Upgrade to vue-next

This commit is contained in:
Jeffrey Biles
2020-03-15 21:01:33 -07:00
parent d47520eaf1
commit 6201e2ae50
3 changed files with 106 additions and 12 deletions

View File

@@ -1,8 +1,4 @@
import Vue from 'vue';
import { createApp } from 'vue';
import App from './App.vue';
Vue.config.productionTip = false;
new Vue({
render: (h) => h(App),
}).$mount('#app');
createApp(App).mount('#app');