第一次提交
This commit is contained in:
16
common/directive.js
Normal file
16
common/directive.js
Normal file
@ -0,0 +1,16 @@
|
||||
import Vue from 'vue'
|
||||
let defaultImg=require("@/static/default.png");
|
||||
|
||||
/*指令测试*/
|
||||
Vue.directive('demo', {
|
||||
bind: function (el, binding, vnode) {
|
||||
var s = JSON.stringify
|
||||
el.innerHTML =
|
||||
'name: ' + s(binding.name) + '<br>' +
|
||||
'value: ' + s(binding.value) + '<br>' +
|
||||
'expression: ' + s(binding.expression) + '<br>' +
|
||||
'argument: ' + s(binding.arg) + '<br>' +
|
||||
'modifiers: ' + s(binding.modifiers) + '<br>' +
|
||||
'vnode keys: ' + Object.keys(vnode).join(', ')
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user