12 lines
271 B
JavaScript
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)
|
|
})
|
|
}
|
|
}
|
|
}
|