import Vue from 'vue';
import About from './about.vue';

new Vue({
    el: '#app',
    render: h => h(About),
});