mirror of
https://github.com/Sebclem/hassio-nextcloud-backup.git
synced 2024-11-05 09:02:58 +01:00
10 lines
179 B
TypeScript
10 lines
179 B
TypeScript
import { createApp } from "vue";
|
|
import App from "./App.vue";
|
|
import { registerPlugins } from "@/plugins";
|
|
|
|
const app = createApp(App);
|
|
|
|
registerPlugins(app);
|
|
|
|
app.mount("#app");
|