摘要: 在查看Vue官方文档时,看到如下js: getters: { // ... getTodoById: (state) => (id) => { return state.todos.find(todo => todo.id id) } } 刚开始看这段代码(state) => (id) => {} 阅读全文
posted @ 2020-06-16 15:59 margo 阅读(1613) 评论(0) 推荐(1) 编辑