zr-admin-ui
Version:
基于ElementUI拓展组件
21 lines (19 loc) • 366 B
JavaScript
/***
* 常用directive指令
**/
import copy from './copy'
import longpress from './longpress'
import waterMarker from './emoji'
// 自定义指令
const directives = {
copy,
longpress,
waterMarker
}
export default {
install(Vue) {
Object.keys(directives).forEach((key) => {
Vue.directive(key, directives[key])
})
},
}