UNPKG

vue

Version:

Simple, Fast & Composable MVVM for building interactive interfaces

32 lines (27 loc) 634 B
import { getAttr, inDoc } from '../../util/index' import { applyTransition } from '../../transition/index' export default { bind () { // check else block var next = this.el.nextElementSibling if (next && getAttr(next, 'v-else') !== null) { this.elseEl = next } }, update (value) { this.apply(this.el, value) if (this.elseEl) { this.apply(this.elseEl, !value) } }, apply (el, value) { if (inDoc(el)) { applyTransition(el, value ? 1 : -1, toggle, this.vm) } else { toggle() } function toggle () { el.style.display = value ? '' : 'none' } } }