add: composant GeneratedContent.vue pour gérer et afficher la partie générative
This commit is contained in:
@@ -6,6 +6,7 @@ import App from './App.vue'
|
||||
// import composants
|
||||
import MainContent from './components/MainContent.vue'
|
||||
import ExtraContent from './components/ExtraContent.vue'
|
||||
import GeneratedContent from './components/GeneratedContent.vue'
|
||||
|
||||
// création app racine
|
||||
const app = createApp(App);
|
||||
@@ -13,6 +14,8 @@ const app = createApp(App);
|
||||
//Composants
|
||||
app.component('mainDiv',MainContent);
|
||||
app.component('extraDiv',ExtraContent);
|
||||
app.component('generatorDiv',GeneratedContent);
|
||||
|
||||
|
||||
//Démarrage dans div#app de index.html
|
||||
app.mount('#app');
|
||||
|
||||
Reference in New Issue
Block a user