store.js

Posted AR13

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了store.js相关的知识,希望对你有一定的参考价值。

// Store current user
store.set(‘user‘, { name:‘Marcus‘ })

// Get current user
store.get(‘user‘)

// Remove current user
store.remove(‘user‘)

// Clear all keys
store.clearAll()

// Loop over all stored values
store.each(function(value, key) {
    console.log(key, ‘==‘, value)
})

Installation

Using npm:

// Example store.js usage with npm
var store = require(‘store‘)
store.set(‘user‘, { name:‘Marcus‘ })
store.get(‘user‘).name == ‘Marcus‘

Using script tag(first download one of thebuilds):

<!-- Example store.js usage with script tag -->
<script src="path/to/my/store.legacy.min.js"></script>
<script>
store.set(‘user‘, { name:‘Marcus‘ })
store.get(‘user‘).name == ‘Marcus‘
</script>

以上是关于store.js的主要内容,如果未能解决你的问题,请参考以下文章

vue各文件详解——store.js

vue.js vuex store(参考)

从 vue.js 中的 store 获得的计算属性的设置器

javascript 反应store.js

store.js

使用 store.js 存储的数据是不是持久保存到手机?可以备份到云端吗?