vue-reactive-localstorage

1.4.5 • Public • Published

Vue Reactive Storage

Reactive layer for interacting with localStorage from Vue 2.

Quick install

npm install vue-reactive-localstorage

or

yarn add vue-reactive-localstorage

Why do you need it

window.localStorage is not reactive if you use it directly with Vue, for example if you want to use localStorage in data and you change a property it will not reflect changes in your component.

new Vue({
    data: {
        storage: window.localStorage
    },
    template: " <div> {{storage.notes}}, {{storage.lang}} ... </div> ",
    created: function() {
        this.storage.lang = "other value";
    }
})

How to use Vue Reactive Storage

import ReactiveStorage from "vue-reactive-localstorage";
// Set initial values
Vue.use(ReactiveStorage, {
    notes: "foo",
    lang: "foo",
    name: "foo",
    count: 1,
    userConfig: {
        age: 10,
        name: "fred"
    }
});

Define vars that will be stored and proxied by Vue (any other var in window.localStorage that is not on this array will not be proxied).

Now you can access the namespace storage in Vue.

new Vue({
    template: " <div> {{storage.notes}}, {{storage.lang}} ... </div> ",
    created: function() {
        this.storage.lang = "other value"; // will react on the view and on real localStorage.
    }
})

Package Sidebar

Install

npm i vue-reactive-localstorage

Weekly Downloads

27

Version

1.4.5

License

ISC

Unpacked Size

13.5 kB

Total Files

4

Last publish

Collaborators

  • alexdicy