打赏
摘要: 1、$route 除了 $route.params 外,$route 对象还提供了其它有用的信息,例如,$route.query (如果 URL 中有查询参数)、$route.hash 等等 阅读全文
posted @ 2018-06-07 18:10 孟繁贵 阅读(192) 评论(0) 推荐(0) 编辑
摘要: 在组件中使用 this.$store.dispatch('xxx') 分发 action,或者使用 mapActions 辅助函数将组件的 methods 映射为 store.dispatch 调用(需要先在根节点注入 store). 阅读全文
posted @ 2018-06-07 15:24 孟繁贵 阅读(12662) 评论(0) 推荐(1) 编辑
摘要: 你可以在组件中使用 this.$store.commit('xxx') 提交 mutation,或者使用 mapMutations 辅助函数将组件中的 methods 映射为 store.commit 调用(需要在根节点注入 store)。 阅读全文
posted @ 2018-06-07 14:45 孟繁贵 阅读(63889) 评论(0) 推荐(1) 编辑
摘要: 在ES5之前,如果属性名是个变量或者需要动态计算,则只能通过 对象.[变量名] 的方式去访问。 而且这种动态计算属性名的方式 在字面量中 是无法使用的。 在ES6中,把属性名用[ ]括起来,则括号中就可以引用提前定义的变量。 阅读全文
posted @ 2018-06-07 14:35 孟繁贵 阅读(7224) 评论(0) 推荐(2) 编辑
摘要: 1、payload payload:有效载荷,即记录有效信息的部分。 2、使用 vuex 配置: 阅读全文
posted @ 2018-06-07 14:19 孟繁贵 阅读(5272) 评论(0) 推荐(0) 编辑
摘要: 1、vuex 配置 2、mapGetters使用 阅读全文
posted @ 2018-06-07 12:01 孟繁贵 阅读(2263) 评论(0) 推荐(1) 编辑
摘要: {{count}} +5 -5 跳转到 HelloWorld3 展示路由 {{count}}+5-5跳转到 HelloWorld3展示路由 阅读全文
posted @ 2018-06-07 11:51 孟繁贵 阅读(7618) 评论(0) 推荐(0) 编辑
TOP