Compare commits

1 Commits
dev ... master

Author SHA1 Message Date
TiclemFR
737afd99d5 . 2024-01-25 09:18:02 +01:00
6 changed files with 207 additions and 722 deletions

View File

@@ -10,6 +10,6 @@
</head> </head>
<body> <body>
<div id="app"></div> <div id="app"></div>
<script type="module" src="/src/main.js"></script> <script type="module" src="./src/main.js"></script>
</body> </body>
</html> </html>

911
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -9,7 +9,7 @@ import HelloWorld from './components/HelloWorld.vue'
<img alt="Moi" class="logo me" src="@/assets/me.jpg" width="125" height="125" /> <img alt="Moi" class="logo me" src="@/assets/me.jpg" width="125" height="125" />
<div class="wrapper"> <div class="wrapper">
<HelloWorld msg="You did it!" /> <HelloWorld msg="Bienvenue sur mon portfolio !" />
<nav> <nav>
<RouterLink to="/">Home</RouterLink> <RouterLink to="/">Home</RouterLink>

View File

@@ -12,8 +12,6 @@ defineProps({
<h1 class="green">{{ msg }}</h1> <h1 class="green">{{ msg }}</h1>
<h3> <h3>
Youve successfully created a project with Youve successfully created a project with
<a href="https://vitejs.dev/" target="_blank" rel="noopener">Vite</a> +
<a href="https://vuejs.org/" target="_blank" rel="noopener">Vue 3</a>.
</h3> </h3>
</div> </div>
</template> </template>

View File

@@ -1,9 +1,9 @@
<script setup> <script setup>
import TheWelcome from '../components/TheWelcome.vue' // import TheWelcome from '../components/TheWelcome.vue'
</script> </script>
<template> <template>
<main> <main>
<TheWelcome /> <!-- <TheWelcome /> -->
</main> </main>
</template> </template>

View File

@@ -12,5 +12,11 @@ export default defineConfig({
alias: { alias: {
'@': fileURLToPath(new URL('./src', import.meta.url)) '@': fileURLToPath(new URL('./src', import.meta.url))
} }
} },
build: {
rollupOptions: {
input: {
},
},
},
}) })