Compare commits

..

No commits in common. "0733f8d5af53f6154e3e611a25109a7e9e6a3fc8" and "4ee3d9bc4421373987e30f892fd3aee8e029dd5a" have entirely different histories.

2 changed files with 5 additions and 13 deletions

View File

@ -1,7 +1,7 @@
<template> <template>
<div @click="goToLink" class="project"> <div class="project">
<div class="project-header"> <div class="project-header">
<h2 >{{ projectName }}</h2> <h2 @click="goToLink">{{ projectName }}</h2>
<div class="project-buttons"> <div class="project-buttons">
<button class="contact-btn">Contact</button> <button class="contact-btn">Contact</button>
</div> </div>
@ -17,7 +17,6 @@
<script setup lang="ts"> <script setup lang="ts">
import { defineProps } from "vue"; import { defineProps } from "vue";
import { useRouter } from 'vue-router'
const props = defineProps<{ const props = defineProps<{
@ -26,17 +25,10 @@ const props = defineProps<{
projectLink: string; projectLink: string;
}>(); }>();
const router = useRouter();
const goToLink = () => { const goToLink = () => {
if (props.projectLink) { if (props.projectLink) {
router.push(props.projectLink);
/*
window.location.href = props.projectLink; window.location.href = props.projectLink;
*/
} }
}; };
</script> </script>

View File

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