From 7f2f1e63826c0acb4514edfb1fbf7a884893f8c4 Mon Sep 17 00:00:00 2001 From: jdlugosz963 Date: Sun, 14 Nov 2021 03:36:10 +0100 Subject: Add command line --- src/main.js | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/main.js') diff --git a/src/main.js b/src/main.js index 95d9800..fd31090 100644 --- a/src/main.js +++ b/src/main.js @@ -4,12 +4,14 @@ import router from './router' import store from './store' import Axios from 'axios' import Notifications from 'vue-notification' +import VueHotkey from 'v-hotkey' Vue.config.productionTip = false Axios.defaults.headers.common['Authorization'] = store.state.token !== "" && `Token ${store.state.token}`; Vue.use(Notifications) +Vue.use(VueHotkey) new Vue({ router, -- cgit v1.2.3