new magic bar

This commit is contained in:
Andras Bacsai
2023-06-06 00:18:48 +02:00
parent fe189da30f
commit 63a2e69cc6
6 changed files with 270 additions and 38 deletions

View File

@@ -1,9 +1,10 @@
import Alpine from "alpinejs";
// import { createApp } from "vue";
// import MagicSearchBar from "./components/MagicSearchBar.vue";
import { createApp } from "vue";
import MagicBar from "./components/MagicBar.vue";
window.Alpine = Alpine;
Alpine.start();
// const app = createApp({});
// app.component('magic-search-bar', MagicSearchBar);
// app.mount('#vue');
const app = createApp({});
app.component("magic-bar", MagicBar);
app.mount("#vue");