├── .gitattributes ├── .gitignore ├── LICENSE ├── README-kor.md ├── README.md ├── index.js ├── package.json └── plugins ├── bindStorage ├── expire.js ├── index.js └── storageFunction │ ├── cookie.js │ ├── index.js │ └── webStorage.js ├── crypto.js └── main.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubystarashe/nuxt-vuex-localstorage/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubystarashe/nuxt-vuex-localstorage/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubystarashe/nuxt-vuex-localstorage/HEAD/LICENSE -------------------------------------------------------------------------------- /README-kor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubystarashe/nuxt-vuex-localstorage/HEAD/README-kor.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubystarashe/nuxt-vuex-localstorage/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubystarashe/nuxt-vuex-localstorage/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubystarashe/nuxt-vuex-localstorage/HEAD/package.json -------------------------------------------------------------------------------- /plugins/bindStorage/expire.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubystarashe/nuxt-vuex-localstorage/HEAD/plugins/bindStorage/expire.js -------------------------------------------------------------------------------- /plugins/bindStorage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubystarashe/nuxt-vuex-localstorage/HEAD/plugins/bindStorage/index.js -------------------------------------------------------------------------------- /plugins/bindStorage/storageFunction/cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubystarashe/nuxt-vuex-localstorage/HEAD/plugins/bindStorage/storageFunction/cookie.js -------------------------------------------------------------------------------- /plugins/bindStorage/storageFunction/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubystarashe/nuxt-vuex-localstorage/HEAD/plugins/bindStorage/storageFunction/index.js -------------------------------------------------------------------------------- /plugins/bindStorage/storageFunction/webStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubystarashe/nuxt-vuex-localstorage/HEAD/plugins/bindStorage/storageFunction/webStorage.js -------------------------------------------------------------------------------- /plugins/crypto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubystarashe/nuxt-vuex-localstorage/HEAD/plugins/crypto.js -------------------------------------------------------------------------------- /plugins/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubystarashe/nuxt-vuex-localstorage/HEAD/plugins/main.js --------------------------------------------------------------------------------