1. 文件夹创建: 创建一个 modules 文件夹,里面存放各种模块,外面一个 index.js 文件 文件夹内容:
向上取整: Math.ceil(5.1234); // 6 向下取整: Math.floor(5.1234); // 5
调用时: this.$store.commit('方法名',param); 使用时 方法名(state, parma)
1. 因为是自定义导航栏,所以信息是储存在vuex中。 避坑1:在page.json 的 llist 里 不需要加 '/', 在 vuex 的list 里需要加 '/' 2.
function copySelf(obj) { var newobj = obj.constructor === Array ? [] : {}; if (typeof obj !== "object") { return; } for (var i in
在 js 里引入 import { mapState } from 'vuex'; 然后添加一个计算属性 computed: { ...mapState(['state里的变量名']) },
在 mutations 里 写个方法 参数就是 state mutations: { aaa(state){ state.hasLogin = false; } }, 如何调用? this.$store.commit('aaa');