index.js 296 B

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