vuex-persistedstate插件-vuex持久化存储

  • 终端npm i vuex-persistedstate
  • store/index.js引入插件import createPersistedstate from 'vuex-persistedstate'
  • 结点配置插件
 // 配置插件
  plugins: [
    // 默认存储在localStorge上
    createPersistedstate({
    
    
      key: 'eshop-client-pc-store',
      paths: ['user', 'cart']
    })
  ]

猜你喜欢

转载自blog.csdn.net/weixin_47979372/article/details/124256995
今日推荐