mirror of
https://github.com/Bubka/2FAuth.git
synced 2025-02-24 06:14:25 +01:00
19 lines
475 B
JavaScript
Vendored
19 lines
475 B
JavaScript
Vendored
import Vue from 'vue'
|
|
import router from './routes'
|
|
import api from './api'
|
|
import i18n from './langs/i18n'
|
|
import FontAwesome from './packages/fontawesome'
|
|
import Clipboard from './packages/clipboard'
|
|
import App from './components/App'
|
|
|
|
import './components'
|
|
|
|
Vue.prototype.$appSettings = appSettings
|
|
Vue.prototype.$appVersion = appVersion
|
|
|
|
const app = new Vue({
|
|
el: '#app',
|
|
components: { App },
|
|
i18n,
|
|
router,
|
|
}); |