mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-23 16:53:26 +01:00
23 lines
608 B
JavaScript
Vendored
23 lines
608 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 QrcodeReader from './packages/qrcodeReader'
|
|
import Notifications from 'vue-notification'
|
|
import App from './components/App'
|
|
|
|
import './components'
|
|
|
|
Vue.use(Notifications)
|
|
|
|
const app = new Vue({
|
|
el: '#app',
|
|
data: {
|
|
appSettings: window.appSettings
|
|
},
|
|
components: { App },
|
|
i18n,
|
|
router,
|
|
}); |