hassio-nextcloud-backup/nextcloud_backup/frontend/src/main.ts

10 lines
179 B
TypeScript
Raw Normal View History

import { createApp } from "vue";
import App from "./App.vue";
2024-02-18 17:19:37 +01:00
import { registerPlugins } from "@/plugins";
2022-10-11 14:10:25 +02:00
2024-02-18 17:19:37 +01:00
const app = createApp(App);
registerPlugins(app);
app.mount("#app");