mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2026-03-01 12:44:28 +00:00
10 lines
210 B
TypeScript
10 lines
210 B
TypeScript
import '@ocelot-social/ui/style.css'
|
|
import Vue from 'vue'
|
|
|
|
import App from './App.vue'
|
|
|
|
new Vue({
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-argument
|
|
render: (h) => h(App),
|
|
}).$mount('#app')
|