10 lines
270 B
JavaScript
Raw Normal View History

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