Blame view
src/main.js
2.61 KB
93a68cfa1
|
1 2 3 4 5 6 |
// The Vue build version to load with the `import` command // (runtime-only or standalone) has been set in webpack.base.conf with an alias. import Vue from 'vue'; import App from './App'; import Vuetify from 'vuetify'; import router from './router'; |
8bb178441
|
7 |
import 'font-awesome/css/font-awesome.css'; |
8ab31dc8b
|
8 |
import './theme/default.styl'; |
93a68cfa1
|
9 10 11 |
import VeeValidate from 'vee-validate'; import colors from 'vuetify/es5/util/colors'; import Truncate from 'lodash.truncate'; |
a17c68a03
|
12 13 |
import store from '@/store/store' import FullCalendar from 'vue-full-calendar'; |
6ae46ca27
|
14 |
import JsonCSV from 'vue-json-csv' |
c8a795168
|
15 16 |
import VueHtml2Canvas from 'vue-html2canvas'; import 'babel-polyfill'; |
ec5677f43
|
17 |
import VueHtmlToPaper from 'vue-html-to-paper'; |
68d742034
|
18 19 20 21 22 |
import VueApexCharts from 'vue-apexcharts' // import FunctionalCalendar from 'vue-functional-calendar'; import 'vue-event-calendar/dist/style.css' //^1.1.10, CSS has been extracted as one file, so you can easily update it. import vueEventCalendar from 'vue-event-calendar' Vue.use(vueEventCalendar, { locale: 'en' }) |
c8a795168
|
23 |
|
68d742034
|
24 25 26 27 28 |
// Vue.use(FunctionalCalendar, { // dayNames: ['Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa', 'Su'] // }); Vue.use(VueApexCharts) Vue.component('apexchart', VueApexCharts) |
ec5677f43
|
29 30 31 32 33 34 35 36 37 38 39 40 |
const options = { name: '_blank', specs: [ 'fullscreen=yes', 'titlebar=yes', 'scrollbars=yes' ], styles: [ 'https://unpkg.com/vuetify/dist/vuetify.min.css', 'https://unpkg.com/kidlat-css/css/kidlat.css' ] } |
ec5677f43
|
41 |
Vue.use(VueHtmlToPaper, options); |
ec5677f43
|
42 43 44 |
// or, using the defaults with no stylesheet Vue.use(VueHtmlToPaper); |
c8a795168
|
45 |
Vue.use(VueHtml2Canvas); |
6ae46ca27
|
46 47 |
Vue.component('downloadCsv', JsonCSV) |
8bb178441
|
48 |
|
93a68cfa1
|
49 |
Vue.config.productionTip = false; |
a17c68a03
|
50 |
Vue.use(FullCalendar); |
93a68cfa1
|
51 52 |
// Helpers // Global filters |
03dcbf0c1
|
53 |
// Vue.use(VueAxios, axios); |
93a68cfa1
|
54 55 |
Vue.filter('truncate', Truncate); Vue.use(VeeValidate, { fieldsBagName: 'formFields' }); |
79583580d
|
56 57 58 59 60 61 62 63 64 |
VeeValidate.Validator.localize({ en: { custom: { password2: { is: 'The passwords do not match' } } } }) |
93a68cfa1
|
65 |
Vue.use(Vuetify, { |
8bb178441
|
66 |
// theme: { |
006544386
|
67 68 69 |
// primary: "f1f1f1", // #E53935 // // secondary: colors.indigo.lighten4, // #FFCDD2 // // accent: colors.indigo.base // #3F51B5 |
8bb178441
|
70 71 72 73 74 75 76 77 78 79 80 81 |
// }, options: { themeVariations: ['primary', 'secondary', 'accent'], extra: { mainToolbar: { color: 'primary', }, sideToolbar: {}, sideNav: 'primary', mainNav: 'primary lighten-1', bodyBg: '', } |
93a68cfa1
|
82 |
} |
93a68cfa1
|
83 84 85 86 87 88 89 |
}); // Bootstrap application components /* eslint-disable no-new */ new Vue({ |
8bb178441
|
90 91 92 |
el: '#app', router, store, |
68d742034
|
93 94 95 |
components: { App }, |
8bb178441
|
96 97 |
template: '<App/>' }); |