1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| import Vue from 'vue'
| import App from './App.vue'
| import vueSeamlessScroll from 'vue-seamless-scroll'
| Vue.use(vueSeamlessScroll)
|
| import 'lib-flexible/flexible.js'
|
|
| import * as echarts from 'echarts';
|
| Vue.config.productionTip = false
|
| new Vue({
| render: h => h(App),
| beforeCreate(){
| Vue.prototype.$echarts=echarts
| }
| }).$mount('#app')
|
|