I tried to migrate a vue project to a nuxt project. The problem is using store/index.js
file.
I copied the origin file into store folder and this error occurs. I could't find the reason.
store/index.js
import { createStore } from "vuex";
export default createStore({
state: {},
mutations: {},
actions: {},
modules: {},
});