diff --git a/src/main.ts b/src/main.ts index d3f059a..2f5c043 100644 --- a/src/main.ts +++ b/src/main.ts @@ -1,11 +1,18 @@ import Vue from 'vue'; import ElementUI from 'element-ui'; +const VCharts = require('v-charts'); import App from './components/app/app.vue'; Vue.config.productionTip = false; + +// Use Element UI Vue.use(ElementUI, {locale: 'en-us'}); +// Use VCharts +Vue.use(VCharts); + +// Init app new Vue({ render: (h) => h(App), }).$mount('#app');