-
-
Notifications
You must be signed in to change notification settings - Fork 33.8k
Closed
Labels
Description
Hi,
I see that transitions are just for show/hide an element. I would it be easy to make it available on any property so the transition would play between changing state ? (lets call it state property)
Example :
<div v-state="state" transition="my-transition"></div>
Vue.transition('expand', {
beforeStateEnter: function (el) {
el.textContent = 'beforeEnter'
},
stateEnter: function (el) {
el.textContent = 'enter'
},
...
})
yabab-dev, mtpc, kincaidoneil, b44rd, bluemsn and 5 more