1.0.1 • Published 6 years ago
@headbright/hb-universal-storage v1.0.1
Universal Storage Helper
Universal storage helper for Nuxt projects with tweaks to facilitate use with older browsers.
The project is based on the equivalent nuxt community module.
Installation
npm i --save @headbright/hb-universal-storageCreate a nuxt plugin:
import Storage from 'hb-universal-storage'
export default function(ctx, inject) {
const options = {
vuex: {
namespace: 'storage'
},
cookie: {
prefix: '',
options: {
path: '/'
}
},
localStorage: {
prefix: ''
},
ignoreExceptions: false
}
const storage = new Storage(ctx, options)
ctx.$storage = storage
inject('storage', storage)
}