npm i --save nativescript-vuex-persistent
- 版本:1.2.0
- GitHub: https://github.com/Gcuencam/ns-vuex-persistent
- NPM: https://npmjs.net.cn/package/nativescript-vuex-persistent
- 下载量
- 昨天: 0
- 上周: 3
- 上个月: 6
安装
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.
])]
});