2023-06-06 00:18:48 +02:00
|
|
|
import { createApp } from "vue";
|
|
|
|
import MagicBar from "./components/MagicBar.vue";
|
2023-12-06 16:34:34 +01:00
|
|
|
import "../../vendor/wire-elements/modal/resources/js/modal";
|
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");
|