Compare commits

..

No commits in common. "f9ee12ab6f274544145fd95f3dc353c6362b80f3" and "fa96bd2b0dad8ebdf1dca8931c4a9232e2955971" have entirely different histories.

3 changed files with 3 additions and 5 deletions

View File

@ -261,7 +261,6 @@ const startEditing = (index: number) => {
};
/*
//FOR LOCAL HOST
const saveEdit = async (index: number) => {
try {
const id = index + 1; // À adapter selon l'ID réel des données

View File

@ -14,7 +14,7 @@
</template>
<script setup lang="ts">
import { ref } from "vue";
import { ref, onMounted } from "vue";
import CanvasItem from "@/components/canvas/CanvasItem.vue";
const props = defineProps<{
@ -87,7 +87,6 @@ const items = ref([
},
]);
/*
onMounted(() => {
const bootstrapCss = document.createElement("link");
bootstrapCss.rel = "stylesheet";
@ -106,7 +105,6 @@ onMounted(() => {
bootstrapJs.crossOrigin = "anonymous";
document.body.appendChild(bootstrapJs);
});
*/
</script>
<style scoped>

View File

@ -33,7 +33,7 @@
<div v-if="choix === 'joindre'" class="message-indispo">
<h2>Joindre un projet</h2>
<p>Cette fonctionnalité n'est pas encore disponible.</p>
<p> Cette fonctionnalité n'est pas encore disponible.</p>
</div>
</div>
</template>
@ -54,6 +54,7 @@ const validerCreation = () => {
return;
}
alert(`Projet "${nomProjet.value}" créé avec succès !`);
// Tu peux ensuite naviguer ou faire un POST ici
};
</script>