Skip to content
  • This project
    • Loading...
  • Sign in

bdc / bdcdj-web

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • bdcdj-web
  • src
  • components
  • Loading
  • index.js
  • 任超's avatar
    feat:自定义动画加载指令的完成 · 4f796e7a
    4f796e7a Browse Directory
    任超 committed 2022-12-22 16:00:42 +0800
index.js 205 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11
import directive from './src/directive';
import service from './src/index';

export default {
  install (Vue) {
    Vue.use(directive);
    Vue.prototype.$loading = service;
  },
  directive,
  service
};