1
0
Fork 0
activist/src/views/HomeView.vue

36 lines
736 B
Vue
Raw Normal View History

2024-11-16 11:40:53 -05:00
<script setup lang="ts">
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>
<h1>Activity</h1>
<Panel header="user1 contributed to project1">
2024-11-26 22:58:46 -05:00
<Button
as="router-link"
to="/profile/b356ab50-4657-4b60-aba9-71a2baab3bfe">
2024-11-26 22:58:46 -05:00
Joe's Profile
</Button>
</Panel>
<Panel header="user2 contributed to project2">
2024-11-26 22:58:46 -05:00
<Button
as="router-link"
to="/profile/2f0ad329-4f24-4d22-8827-d1a5d3237a4d">
Kim's Profile
2024-11-26 22:58:46 -05:00
</Button>
</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>
<style scoped>
h1 {
font-size: 150%;
margin: 20px;
}
</style>