tethys/resources/js/landingpage/main.ts

7 lines
102 B
TypeScript
Raw Permalink Normal View History

2020-03-06 14:39:05 +00:00
import Vue from 'vue';
import App from './App.vue';
new Vue({
el: '#app',
render: h => h(App)
});