edit: consstruction d'une structure responsive pour l'interface
This commit is contained in:
@@ -4,13 +4,25 @@ import './assets/style.css'
|
||||
// import app vue racine
|
||||
import App from './App.vue'
|
||||
// import composants
|
||||
//import MainContent from './components/MainContent.vue'
|
||||
import TitleContent from './components/TitleContent.vue'
|
||||
import InfoContent from './components/InfoContent.vue'
|
||||
import TitleText from './components/Title/TitleText.vue'
|
||||
import GeneratedContent from './components/Title/GeneratedContent.vue'
|
||||
import MusicPlayer from './components/Title/MusicPlayer.vue'
|
||||
import InfoMenu from './components/Info/InfoMenu.vue'
|
||||
import InboxContent from './components/Info/InboxContent.vue'
|
||||
|
||||
// création app racine
|
||||
const app = createApp(App);
|
||||
|
||||
//Composants
|
||||
//app.component('mainDiv',MainContent);
|
||||
app.component('TitleDiv', TitleContent);
|
||||
app.component('InfoDiv', InfoContent);
|
||||
app.component('PlayerDiv', MusicPlayer);
|
||||
app.component('TitleTextDiv', TitleText);
|
||||
app.component('GeneratedDiv',GeneratedContent);
|
||||
app.component('InfoMenuDiv', InfoMenu);
|
||||
app.component('InboxDiv', InboxContent);
|
||||
|
||||
//Montage dans div#app de index.html
|
||||
app.mount('#app');
|
||||
|
||||
Reference in New Issue
Block a user