nativeScript-vuex-persistent
一个用于使 vuex 在 nativescript-vue 项目中持久化的小型库。
npm i --save nativescript-vuex-persistent

GitHub license

安装

npm install --save nativescript-vuex-persistent

使用

import NSVuexPersistent from 'nativescript-vuex-persistent';

const store = new Vuex.Store({
state: {
// Your state.
},
mutations,
actions,
getters,
strict: debug,
plugins: [NSVuexPersistent([
// Here you will define the states that you want to be persistent.
])]
});