7 lines
160 B
TypeScript
Raw Normal View History

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