mirror of
https://github.com/koush/scrypted.git
synced 2026-04-11 02:50:21 +01:00
31 lines
719 B
TypeScript
31 lines
719 B
TypeScript
import Vue from 'vue';
|
|
import './plugins/icons';
|
|
import vuetify from './plugins/vuetify';
|
|
import './plugins/script2';
|
|
import './plugins/clipboard';
|
|
import './plugins/async-computed';
|
|
import './plugins/apexcharts';
|
|
import './plugins/is-mobile';
|
|
import Launcher from './Launcher.vue'
|
|
import './registerServiceWorker'
|
|
|
|
import VCalendar from 'v-calendar';
|
|
|
|
// Use v-calendar & v-date-picker components
|
|
Vue.use(VCalendar, {
|
|
componentPrefix: 'vc', // Use <vc-calendar /> instead of <v-calendar />
|
|
});
|
|
|
|
// STYLES
|
|
// Main Theme SCSS
|
|
// import './assets/scss/theme.scss'
|
|
|
|
Vue.directive('linkified', require('vue-linkify'))
|
|
|
|
Vue.config.productionTip = false
|
|
|
|
new Vue({
|
|
render: h => h(Launcher),
|
|
vuetify,
|
|
}).$mount('#app')
|