for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
import Vue from 'vue';
import WidgetChart from '../vue/WidgetChart.vue';
// Create our vue instance
const vm = new Vue({
vm
el: "#widget-content",
components: {
'widget-chart': WidgetChart,
},
data: {
methods: {
mounted() {
});