forked from vgaNAR6ta/drags-and-nerds
13c91b464f
préparation du template intégration du fond animé fusion du style background et style pcp
17 lines
376 B
JavaScript
17 lines
376 B
JavaScript
import { createApp } from 'vue'
|
|
// import CSS global
|
|
import './assets/style.css'
|
|
// import app vue racine
|
|
import App from './App.vue'
|
|
// import composants
|
|
//import MainContent from './components/MainContent.vue'
|
|
|
|
// création app racine
|
|
const app = createApp(App);
|
|
|
|
//Composants
|
|
//app.component('mainDiv',MainContent);
|
|
|
|
//Montage dans div#app de index.html
|
|
app.mount('#app');
|