fix: fixing the issues regarding the use of href

This commit is contained in:
Mohamed Maoulainine Maoulainine
2025-02-25 22:53:15 +01:00
parent d75d45e204
commit 8071c01c5d
2 changed files with 13 additions and 5 deletions

View File

@ -27,12 +27,12 @@ import { ref } from "vue";
const projects = ref([
{
name: "Projet Alpha",
link: "/project-alpha.html", // to test
link: "/canvas", // to test
members: ["Alice", "Bob", "Charlie"],
},
{
name: "Projet Beta",
link: "./project-beta.html", // to test
link: "./canvas", // to test
members: ["David", "Eve", "Frank"],
},
]);