app_template/src/main.ts

7 lines
160 B
TypeScript
Raw Normal View History

2024-11-10 13:03:55 +01:00
import '@formatjs/intl-segmenter/polyfill'
import { createApp } from 'vue'
import App from './App.vue'
const View = createApp(App)
View.mount('#app_template')