2023-05-10 17:26:28 +00:00
|
|
|
import Alpine from "alpinejs";
|
|
|
|
|
import { createApp } from "vue";
|
|
|
|
|
import MagicSearchBar from "./components/MagicSearchBar.vue";
|
|
|
|
|
window.Alpine = Alpine;
|
|
|
|
|
Alpine.start();
|
2023-05-10 13:49:56 +00:00
|
|
|
|
|
|
|
|
const app = createApp({});
|
2023-05-10 17:26:28 +00:00
|
|
|
// app.component('magic-search-bar', MagicSearchBar);
|
|
|
|
|
// app.mount('#vue');
|