2018-08-11 01:47:10 -04:00
|
|
|
// 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 { router } from './router'
|
|
|
|
import store from './store'
|
|
|
|
import './filter'
|
|
|
|
import './progress'
|
2019-10-26 03:20:57 -04:00
|
|
|
import vClickOutside from 'v-click-outside'
|
2020-05-16 00:14:21 -04:00
|
|
|
import VueTinyLazyloadImg from 'vue-tiny-lazyload-img'
|
2020-10-07 03:03:02 -04:00
|
|
|
import VueObserveVisibility from 'vue-observe-visibility'
|
|
|
|
import VueScrollTo from 'vue-scrollto'
|
2018-08-11 01:47:10 -04:00
|
|
|
import 'mdi/css/materialdesignicons.css'
|
|
|
|
import 'vue-range-slider/dist/vue-range-slider.css'
|
2020-05-16 00:14:21 -04:00
|
|
|
import './mystyles.scss'
|
2020-10-08 00:01:17 -04:00
|
|
|
|
2018-08-11 01:47:10 -04:00
|
|
|
Vue.config.productionTip = false
|
|
|
|
|
2019-10-26 03:20:57 -04:00
|
|
|
Vue.use(vClickOutside)
|
2020-05-16 00:14:21 -04:00
|
|
|
Vue.use(VueTinyLazyloadImg)
|
2020-10-07 03:03:02 -04:00
|
|
|
Vue.use(VueObserveVisibility)
|
|
|
|
Vue.use(VueScrollTo)
|
2019-10-26 03:20:57 -04:00
|
|
|
|
2018-08-11 01:47:10 -04:00
|
|
|
/* eslint-disable no-new */
|
|
|
|
new Vue({
|
|
|
|
el: '#app',
|
|
|
|
router,
|
|
|
|
store,
|
|
|
|
components: { App },
|
|
|
|
template: '<App/>'
|
|
|
|
})
|