2FAuth/resources/js/packages/vue-storage.js

9 lines
276 B
JavaScript
Raw Normal View History

2020-11-26 20:39:15 +01:00
import Vue from 'vue'
import VueStorage from 'vue2-storage'
// You can specify the plug-in configuration when connecting, passing the second object to Vue.use
Vue.use(VueStorage, {
prefix: '',
driver: 'local',
ttl: 60 * 60 * 24 * 1000 * 122 // 4 month
})