vue-data-stash

0.1.2 • Public • Published

vue-data-stash

Save component data for rainy day

What?

This small mixin allows you to define stashable data in your components i.e. data that will be saved until next time when component will be used.

Why?

I'm bored to write localStorage.setItem for every time I need to save some data.

Install

Install via NPM:

npm install vue-data-stash

Add it globally:

import VueDataStash from 'vue-data-stash'
 
Vue.use(VueDataStash)

Or in a single component:

import { mixin } from 'vue-data-stash'
 
export default {
  mixins: [mixin]
}

Usage

Just add stash property like it's just data:

export default {
  name: 'MyComponent',
  stash: () => ({
    activeId: true
  })
}

NOTE: Name for localStorage is based on the name option

Readme

Keywords

none

Package Sidebar

Install

npm i vue-data-stash

Weekly Downloads

0

Version

0.1.2

License

MIT

Unpacked Size

3.24 kB

Total Files

6

Last publish

Collaborators

  • kelin2025