static_site/src/main.ts

5 lines
93 B
TypeScript
Raw Normal View History

2021-11-01 19:43:13 +08:00
import { createApp } from 'vue';
import App from './App.vue';
createApp(App).mount('#app');