mirror of
https://github.com/Sebclem/hassio-nextcloud-backup.git
synced 2024-11-05 17:12:58 +01:00
12 lines
195 B
TypeScript
12 lines
195 B
TypeScript
|
import { createApp } from 'vue'
|
||
|
import { createPinia } from 'pinia'
|
||
|
import App from './App.vue'
|
||
|
|
||
|
import './assets/main.css'
|
||
|
|
||
|
const app = createApp(App)
|
||
|
|
||
|
app.use(createPinia())
|
||
|
|
||
|
app.mount('#app')
|