Animating children
Pose changes propagate across posed components, so you only have to set pose
on a parent to animate all its children.
<template>
<Sidebar :pose="isVisible ? 'visible': 'hidden'">
<Item v-for="item in items" v-bind:key="item" />
</Sidebar>
</template>