rubystarashe / nuxt-vuex-localstorage

MIT License
161 stars 18 forks source link

Support nuxt store folder structure #35

Open l2cri opened 3 years ago

l2cri commented 3 years ago

Please add store like as 'root/subStore' in nuxt.config.js I like module structure and my store have tree mode folder structure as store file/folder

//  nuxt.config.js
module.exports = {
  modules: [
    ['nuxt-vuex-localstorage', {
      localStorage: ['foo/bar', 'foo.bar'],  //  / or . as separator
      sessionStorage: ['sfoo/sbar', 'sfoo.sbar'] 
    }]
  ]
}