Files
JY1.0/src/components/AmountInputBox/index.js
2020-02-24 15:20:42 +08:00

12 lines
271 B
JavaScript

import AmountInputBox from './AmountInputBox.js'
const directives = [AmountInputBox]
export default {
install: Vue => {
if (directives.length && directives.length > 0) {
directives.map(item => {
Vue.directive(item.key, item.func)
})
}
}
}