Passage à Laravel 10 pour Fortify Bootstrap

This commit is contained in:
hugol
2024-08-11 15:38:19 +02:00
parent f28e5700e8
commit 0c4e5538db
96 changed files with 16694 additions and 1962 deletions

View File

@@ -1 +1,11 @@
import './bootstrap';
require('./bootstrap');
import { createApp } from 'vue'
import ExampleComponent from "./components/ExampleComponent.vue";
const app = createApp({});
app.component("ExampleComponent", ExampleComponent);
app.mount("#app");