mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2026-03-01 12:44:28 +00:00
9 lines
129 B
TypeScript
9 lines
129 B
TypeScript
import { createApp } from 'vue'
|
|
|
|
import App from './App.vue'
|
|
|
|
import './style.css'
|
|
|
|
const app = createApp(App)
|
|
app.mount('#app')
|