homepage/source/_assets/about/index.js

8 lines
114 B
JavaScript

import Vue from 'vue';
import About from './about.vue';
new Vue({
el: '#app',
render: h => h(About),
});