You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
275 B

1 week ago
  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. }