vue ssr nuxt.js 报错Classic mode for store/ is deprecated and will be removed in Nuxt 3

4 篇文章 0 订阅
4 篇文章 0 订阅

Classic mode for store/ is deprecated and will be removed in Nuxt 3.

在 nuxtjs 版本2.4之后,采用 store/index.js返回创建Vuex.Store实例的方法会报错,已经废弃这种配置 vuex 的方式,并且在3.0之后会移除该配置方式。

2.4之后配置方式 模块方式:

store 目录下的每个 .js 文件会被转换成为状态树指定命名的子模块(index 是根模块)。
state的值应该始终是function,为了避免返回引用类型,会导致多个实例相互影响。

export const state = () => ({
  counter: 0
})
export const mutations = {
  increment (state) {
    state.counter++
  }
}

可以拥有 store/todos.js 文件
export const state = () => ({
list: []
})

export const mutations = {
  add (state, text) {
    state.list.push({
      text: text,
      done: false
    })
  },
  remove (state, { todo }) {
    state.list.splice(state.list.indexOf(todo), 1)
  },
  toggle (state, todo) {
    todo.done = !todo.done
  }
}

Vuex将如下创建:

new Vuex.Store({
  state: () => ({
    counter: 1
  }),
  modules: {
    todos: {
      namespaced: true,
      state: () => ({
        counter:2
      })
    }
  }
})

使用:

this.$store.state.counter //1
this.$store.state.todos.counter //2
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值