mirror of
https://github.com/filebrowser/filebrowser.git
synced 2025-05-08 11:22:10 +00:00

Former-commit-id: 45a5b4c8586bd3417090ca565a0db43ab6aca31d [formerly 3b40f1b77fed063f498d1eb0ac6905e749343e19] [formerly d7d8973a5bb23a0b943605a22f6da12efb6e384e [formerly aec74bd8d67d526d5e3c20aaa98e929bd78c2f1e]] Former-commit-id: 94999ff88a6186c8e98b0161f035ea11a8023ad7 [formerly a449396cea340beefc2cf72cedba4bc8c72d4173] Former-commit-id: d6c6178835bba69bf6a87e0ac43e5284d841ba61
19 lines
378 B
JavaScript
19 lines
378 B
JavaScript
import Vue from 'vue'
|
|
import App from './App'
|
|
import store from './store/store'
|
|
|
|
Vue.config.productionTip = false
|
|
|
|
var $ = (window.info || window.alert('Something is wrong, please refresh!'))
|
|
|
|
// TODO: keep this here? Maybe on app.vue?
|
|
document.title = $.req.data.name
|
|
|
|
/* eslint-disable no-new */
|
|
new Vue({
|
|
el: '#app',
|
|
store,
|
|
template: '<App/>',
|
|
components: { App }
|
|
})
|