index.js 287 B

1234567891011121314
  1. import tab from './tab'
  2. import auth from './auth'
  3. import modal from './modal'
  4. export default {
  5. install(Vue) {
  6. // 页签操作
  7. Vue.prototype.$tab = tab
  8. // 认证对象
  9. Vue.prototype.$auth = auth
  10. // 模态框对象
  11. Vue.prototype.$modal = modal
  12. }
  13. }