UNPKG

vue

Version:

Simple, Fast & Composable MVVM for building interactive interfaces

29 lines (24 loc) 560 B
import { camelize, hasOwn, defineReactive } from '../../util/index' import { EL } from '../priorities' export default { priority: EL, bind () { /* istanbul ignore if */ if (!this.arg) { return } var id = this.id = camelize(this.arg) var refs = (this._scope || this.vm).$els if (hasOwn(refs, id)) { refs[id] = this.el } else { defineReactive(refs, id, this.el) } }, unbind () { var refs = (this._scope || this.vm).$els if (refs[this.id] === this.el) { refs[this.id] = null } } }