Bootstrap

vue引入和使用vue-ls

1、npm下载vue-ls

npm install vue-ls --save

2、在settings文件中配置options

module.exports = {

  // vue-ls 配置 options
  storageOptions: {
    namespace: 'pro__', // key prefix
    name: 'ls', // name variable Vue.[ls] or this.[$ls],
    storage: 'local' // storage name session, local, memory
  }

}

3、在main.js中引入和设置全局使用

import Storage from 'vue-ls'
import defaultSettings from '@/settings'

Vue.use(Storage, defaultSettings.storageOptions)

4、在组件中引入vue就可以使用了

import Vue from "vue";

Vue.ls.set('USER-PWD', JSON.stringify(user), 7 * 24 * 60 * 60 * 1000);

;