This commit is contained in:
Andras Bacsai
2023-05-10 15:49:56 +02:00
parent 9275b3edd7
commit 3a448a6ffc
9 changed files with 398 additions and 13 deletions

View File

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