index.js 228 B

1234567891011121314
  1. import showScore from './showScore'
  2. // 自定义指令
  3. const directives = {
  4. showScore
  5. }
  6. export default {
  7. install (Vue) {
  8. Object.keys(directives).forEach((key) => {
  9. Vue.directive(key, directives[key])
  10. })
  11. }
  12. }