vue
qq_38140120
毕业半年的小菜鸡
展开
-
vuex
const userModule = { namespaced: true, state: { 原始数据 }, mutations: { test(statem,params){} 只能通过它直接修改state里的数据 }, actions: { test(context,params){ context.commit('test',params) } }, } 调用 ...mapActions('原创 2020-06-26 17:18:12 · 94 阅读 · 0 评论 -
vue router
1. this.$router.push({name: 'Home'}) 2. this.$router.replace({name: 'Home'}) 都是跳转到指定路由 , push会在history添加记录 点击回退 , 返回上一个页面.. replace 不会返回上一个页面 路由传参 url传参 <router-link :to="'/user/'+(item)"> 路由为/user/:id 获取参数: <p>{{thi原创 2020-06-26 16:49:35 · 84 阅读 · 0 评论