引入vuex,无法使用
来源:5-4 vuex 快速上手与核心概念
当下的时光
2019-12-24
报
ERROR Failed to compile with 1 errors 上午12:34:43
error in ./src/main.js
Module Error (from ./node_modules/eslint-loader/index.js):
error: ‘Vuex’ is not defined (no-undef) at src/main.js:40:19:
38 | })
39 |
40 | const store = new Vuex.Test({
| ^
41 | state: {
42 | data: 'this is data’
43 | },
1 error found.
@ multi (webpack)-dev-server/client?http://192.168.1.10:8081/sockjs-node (webpack)/hot/dev-server.js ./src/main.js
请问如何解决
写回答
1回答
-
Sam
2019-12-24
你好,看你的报错信息,应该通过引入 Vuex 模块解决,加入代码:import Vuex from 'vuex'
022019-12-24
相似问题