canvas included in the main page, still shiting with vue

This commit is contained in:
2025-02-08 20:18:44 +01:00
parent edd4993f3f
commit b30e1196f4
16 changed files with 494 additions and 1 deletions

View File

@ -0,0 +1,21 @@
<template>
<div class="cell produit" @click="toggleExpand">
<h3>4. Solution</h3>
<p>3 fonctionnalités essentielles pour le client</p>
</div>
</template>
<script>
export default {
methods: {
toggleExpand(event) {
event.currentTarget.classList.toggle("expanded");
}
}
};
</script>
<style scoped>
@import "@/components/canvas/style-project.css";
</style>