feat: enhancing the layout + we need to start using the classes

This commit is contained in:
2025-04-27 10:14:57 +02:00
parent fcc20d1f42
commit 4d3aae1249
3 changed files with 5 additions and 3 deletions

View File

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