2024-11-16 11:40:53 -05:00
|
|
|
<script setup lang="ts">
|
2024-11-26 19:43:08 -05:00
|
|
|
import Panel from 'primevue/panel';
|
2024-11-26 22:58:46 -05:00
|
|
|
import Button from "primevue/button";
|
2024-11-16 11:40:53 -05:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
2024-11-26 19:43:08 -05:00
|
|
|
<h1>Activity</h1>
|
|
|
|
|
<Panel header="user1 contributed to project1">
|
2024-11-26 22:58:46 -05:00
|
|
|
<Button
|
|
|
|
|
as="router-link"
|
2025-10-22 09:19:37 -04:00
|
|
|
to="/profile/b356ab50-4657-4b60-aba9-71a2baab3bfe">
|
2024-11-26 22:58:46 -05:00
|
|
|
Joe's Profile
|
|
|
|
|
</Button>
|
2024-11-26 19:43:08 -05:00
|
|
|
</Panel>
|
|
|
|
|
<Panel header="user2 contributed to project2">
|
2024-11-26 22:58:46 -05:00
|
|
|
<Button
|
|
|
|
|
as="router-link"
|
2025-10-22 09:19:37 -04:00
|
|
|
to="/profile/2f0ad329-4f24-4d22-8827-d1a5d3237a4d">
|
|
|
|
|
Kim's Profile
|
2024-11-26 22:58:46 -05:00
|
|
|
</Button>
|
2024-11-26 19:43:08 -05:00
|
|
|
</Panel>
|
|
|
|
|
<Panel header="user3 contributed to project3">
|
|
|
|
|
item 3
|
|
|
|
|
</Panel>
|
|
|
|
|
<Panel header="user4 contributed to project4">
|
|
|
|
|
item 4
|
|
|
|
|
</Panel>
|
2024-11-16 11:40:53 -05:00
|
|
|
</template>
|
2024-11-26 19:43:08 -05:00
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
h1 {
|
|
|
|
|
font-size: 150%;
|
|
|
|
|
margin: 20px;
|
|
|
|
|
}
|
|
|
|
|
</style>
|