mirror of
https://github.com/KevinMidboe/vue-chartjs.git
synced 2025-10-29 18:00:20 +00:00
10 lines
274 B
JavaScript
10 lines
274 B
JavaScript
// 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 './examples/App'
|
|
|
|
/* eslint-disable no-new */
|
|
new Vue({
|
|
render: h => h(App)
|
|
}).$mount('#app')
|