index.js 198 B

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