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>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
<script type="module" src="./src/main.js"></script>
</body>
</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" />
<div class="wrapper">
<HelloWorld msg="You did it!" />
<HelloWorld msg="Bienvenue sur mon portfolio !" />
<nav>
<RouterLink to="/">Home</RouterLink>

View File

@@ -12,8 +12,6 @@ defineProps({
<h1 class="green">{{ msg }}</h1>
<h3>
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>
</div>
</template>

View File

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

View File

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