Add auto-lock option

This commit is contained in:
Bubka
2020-10-08 15:38:36 +02:00
parent 07df0cd5e0
commit 9b34159c4c
14 changed files with 266 additions and 17 deletions

3
resources/js/app.js vendored
View File

@ -1,4 +1,5 @@
import Vue from 'vue'
import mixins from './mixins'
import router from './routes'
import api from './api'
import i18n from './langs/i18n'
@ -6,7 +7,6 @@ import FontAwesome from './packages/fontawesome'
import Clipboard from './packages/clipboard'
import QrcodeReader from './packages/qrcodeReader'
import Notifications from 'vue-notification'
import App from './components/App'
import './components'
@ -17,7 +17,6 @@ const app = new Vue({
data: {
appSettings: window.appSettings
},
components: { App },
i18n,
router,
});