forked from DebaucheryLibrarian/traxxx
45 lines
948 B
JavaScript
45 lines
948 B
JavaScript
import Vue from 'vue';
|
|
import dayjs from 'dayjs';
|
|
|
|
import router from './router';
|
|
import initStore from './store';
|
|
|
|
import '../css/style.scss';
|
|
|
|
import Container from '../components/container/container.vue';
|
|
import Icon from '../components/icon/icon.vue';
|
|
|
|
function init() {
|
|
const store = initStore(router);
|
|
|
|
Vue.mixin({
|
|
components: {
|
|
Icon,
|
|
},
|
|
watch: {
|
|
pageTitle(title) {
|
|
if (title) {
|
|
document.title = `traxxx - ${title}`;
|
|
return;
|
|
}
|
|
|
|
document.title = 'traxxx';
|
|
},
|
|
},
|
|
methods: {
|
|
formatDate: (date, format) => dayjs(date).format(format),
|
|
},
|
|
});
|
|
|
|
new Vue({ // eslint-disable-line no-new
|
|
el: '#container',
|
|
store,
|
|
router,
|
|
render(createElement) {
|
|
return createElement(Container);
|
|
},
|
|
});
|
|
}
|
|
|
|
init();
|