vue-storage.js 309 B

12345678910
  1. import Vue from 'vue'
  2. import { Plugin } from 'vue2-storage'
  3. // You can specify the plug-in configuration when connecting, passing the second object to Vue.use
  4. Vue.use(Plugin, {
  5. prefix: '',
  6. driver: 'local',
  7. ttl: 60 * 60 * 24 * 1000 * 122, // 4 month
  8. replacer: (key, value) => value
  9. })