mirror of
https://github.com/ecomfe/vue-echarts.git
synced 2025-08-15 03:33:19 +08:00
13 lines
187 B
JavaScript
13 lines
187 B
JavaScript
import './polyfill'
|
|
import Vue from 'vue'
|
|
import Demo from './Demo.vue'
|
|
|
|
/* eslint-disable no-new */
|
|
new Vue({
|
|
el: '#app',
|
|
components: {
|
|
demo: Demo
|
|
},
|
|
render: h => h(Demo)
|
|
})
|