add: PASSAGE V1 COM OFFICIELLE

préparation du template
intégration du fond animé
fusion du style background et style pcp
This commit is contained in:
2026-03-18 20:15:01 +01:00
parent ade729bc58
commit 13c91b464f
45 changed files with 10987 additions and 106 deletions
+13 -2
View File
@@ -1,5 +1,16 @@
import { createApp } from 'vue'
import './style.css'
// import CSS global
import './assets/style.css'
// import app vue racine
import App from './App.vue'
// import composants
//import MainContent from './components/MainContent.vue'
createApp(App).mount('#app')
// création app racine
const app = createApp(App);
//Composants
//app.component('mainDiv',MainContent);
//Montage dans div#app de index.html
app.mount('#app');