摘要: 1.App.vue中添加 <transition :name="animate"> <router-view/> </transition> export default { name: 'App', data(){ return{ animate: "" } }, watch: { $route( 阅读全文
posted @ 2020-04-27 15:28 小羊不挑食 阅读(428) 评论(0) 推荐(0) 编辑
摘要: 1、vue.prototype:实例上挂载属性/方法,例如Vue.prototype.axios = axios; 2、vue.use:引入插件,例如vuex,vue.use(vuex)如图,vue.use会初始化插件,运行导出的intsall函数// 使用插件Vuex // 初始化插件 Vue.u 阅读全文
posted @ 2020-03-18 11:27 小羊不挑食 阅读(5535) 评论(2) 推荐(0) 编辑