7 lines
160 B
TypeScript
7 lines
160 B
TypeScript
import '@formatjs/intl-segmenter/polyfill'
|
|
import { createApp } from 'vue'
|
|
import App from './App.vue'
|
|
|
|
const View = createApp(App)
|
|
View.mount('#app_template')
|