edit: préparation du template

This commit is contained in:
2026-03-02 19:58:45 +01:00
parent 5b98e85d4a
commit fc1c00bcb9
9 changed files with 48 additions and 149 deletions
-43
View File
@@ -1,43 +0,0 @@
<script setup>
import { ref } from 'vue'
defineProps({
msg: String,
})
const count = ref(0)
</script>
<template>
<h1>{{ msg }}</h1>
<div class="card">
<button type="button" @click="count++">count is {{ count }}</button>
<p>
Edit
<code>components/HelloWorld.vue</code> to test HMR
</p>
</div>
<p>
Check out
<a href="https://vuejs.org/guide/quick-start.html#local" target="_blank"
>create-vue</a
>, the official Vue + Vite starter
</p>
<p>
Learn more about IDE Support for Vue in the
<a
href="https://vuejs.org/guide/scaling-up/tooling.html#ide-support"
target="_blank"
>Vue Docs Scaling up Guide</a
>.
</p>
<p class="read-the-docs">Click on the Vite and Vue logos to learn more</p>
</template>
<style scoped>
.read-the-docs {
color: #888;
}
</style>
+20
View File
@@ -0,0 +1,20 @@
<script setup>
</script>
<template>
<div class="mainContainer">
</div>
</template>
<style scoped>
/*CSS général app*/
</style>
<script>
export default {
name : 'MainContent',
mounted(){
console.log("Main content is loaded!");
}
};
</script>