7 lines
168 B
JavaScript
Raw Normal View History

2023-06-06 00:18:48 +02:00
import { createApp } from "vue";
import MagicBar from "./components/MagicBar.vue";
2023-12-06 16:38:46 +01:00
2023-06-06 00:18:48 +02:00
const app = createApp({});
app.component("magic-bar", MagicBar);
app.mount("#vue");