index.js 195 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 import tab from './tab' import cache from './cache' export default { install(Vue) { // 页签操作 Vue.prototype.$tab = tab // 缓存对象 Vue.prototype.$cache = cache } }