front_foundation #9
@ -261,6 +261,7 @@ const startEditing = (index: number) => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
//FOR LOCAL HOST
|
||||||
const saveEdit = async (index: number) => {
|
const saveEdit = async (index: number) => {
|
||||||
try {
|
try {
|
||||||
const id = index + 1; // À adapter selon l'ID réel des données
|
const id = index + 1; // À adapter selon l'ID réel des données
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { ref, onMounted } from "vue";
|
import { ref } from "vue";
|
||||||
import CanvasItem from "@/components/canvas/CanvasItem.vue";
|
import CanvasItem from "@/components/canvas/CanvasItem.vue";
|
||||||
|
|
||||||
const props = defineProps<{
|
const props = defineProps<{
|
||||||
@ -87,6 +87,7 @@ const items = ref([
|
|||||||
},
|
},
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
/*
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
const bootstrapCss = document.createElement("link");
|
const bootstrapCss = document.createElement("link");
|
||||||
bootstrapCss.rel = "stylesheet";
|
bootstrapCss.rel = "stylesheet";
|
||||||
@ -105,6 +106,7 @@ onMounted(() => {
|
|||||||
bootstrapJs.crossOrigin = "anonymous";
|
bootstrapJs.crossOrigin = "anonymous";
|
||||||
document.body.appendChild(bootstrapJs);
|
document.body.appendChild(bootstrapJs);
|
||||||
});
|
});
|
||||||
|
*/
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
@ -33,7 +33,7 @@
|
|||||||
|
|
||||||
<div v-if="choix === 'joindre'" class="message-indispo">
|
<div v-if="choix === 'joindre'" class="message-indispo">
|
||||||
<h2>Joindre un projet</h2>
|
<h2>Joindre un projet</h2>
|
||||||
<p>⚠️ Cette fonctionnalité n'est pas encore disponible.</p>
|
<p>Cette fonctionnalité n'est pas encore disponible.</p>
|
||||||
adnane marked this conversation as resolved
Outdated
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@ -54,7 +54,6 @@ const validerCreation = () => {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
alert(`Projet "${nomProjet.value}" créé avec succès !`);
|
alert(`Projet "${nomProjet.value}" créé avec succès !`);
|
||||||
adnane marked this conversation as resolved
piair
commented
Just do it! Just do it!
|
|||||||
// Tu peux ensuite naviguer ou faire un POST ici
|
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user
remove this caracter