index.js 405 B

123456789101112131415
  1. import tab from './tab'
  2. import auth from './auth'
  3. import modal from './modal'
  4. import xy from './xy'
  5. export default function installPlugins(app){
  6. // 页签操作
  7. app.config.globalProperties.$tab = tab
  8. // 认证对象
  9. app.config.globalProperties.$auth = auth
  10. // 模态框对象
  11. app.config.globalProperties.$modal = modal
  12. // 处理数据
  13. app.config.globalProperties.$xy = xy
  14. }