import Api from './api.js'
export default {
install (Vue) {
Vue.prototype.$Api = Api
}
}
这种格式就可以在main.js中直接使用Vue.use()全局注册
本文共 180 字,大约阅读时间需要 1 分钟。
import Api from './api.js'
export default {
install (Vue) {
Vue.prototype.$Api = Api
}
}
这种格式就可以在main.js中直接使用Vue.use()全局注册
转载于:https://www.cnblogs.com/chzlh/p/10749915.html