摘要:
1.App.vue中添加 <transition :name="animate"> <router-view/> </transition> export default { name: 'App', data(){ return{ animate: "" } }, watch: { $route( 阅读全文
摘要:
1、vue.prototype:实例上挂载属性/方法,例如Vue.prototype.axios = axios; 2、vue.use:引入插件,例如vuex,vue.use(vuex)如图,vue.use会初始化插件,运行导出的intsall函数// 使用插件Vuex // 初始化插件 Vue.u 阅读全文