import showScore from './showScore' // 自定义指令 const directives = { showScore } export default { install (Vue) { Object.keys(directives).forEach((key) => { Vue.directive(key, directives[key]) }) } }