综合办公系统
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

index.js 275B

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. }