2FAuth/resources/js/app.js

19 lines
475 B
JavaScript
Raw Normal View History

2019-05-28 17:29:15 +02:00
import Vue from 'vue'
2020-01-18 18:19:37 +01:00
import router from './routes'
import api from './api'
2020-01-18 18:19:37 +01:00
import i18n from './langs/i18n'
2020-01-15 23:00:06 +01:00
import FontAwesome from './packages/fontawesome'
2020-01-22 12:30:18 +01:00
import Clipboard from './packages/clipboard'
2020-01-16 13:50:53 +01:00
import App from './components/App'
2020-01-14 17:06:59 +01:00
import './components'
Vue.prototype.$appSettings = appSettings
Vue.prototype.$appVersion = appVersion
2019-05-20 07:37:41 +02:00
const app = new Vue({
el: '#app',
2019-05-28 17:29:15 +02:00
components: { App },
i18n,
2019-05-28 17:29:15 +02:00
router,
});