github.com/insionng/yougam@v0.0.0-20170714101924-2bc18d833463/themes/wind/static/libs/vue-1.0.24/src/directives/public/text.js (about) 1 import { _toString } from '../../util/index' 2 3 export default { 4 5 bind () { 6 this.attr = this.el.nodeType === 3 7 ? 'data' 8 : 'textContent' 9 }, 10 11 update (value) { 12 this.el[this.attr] = _toString(value) 13 } 14 }