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

27 lines
466 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-16 11:40:53 -05:00
</script>
<template>
<h1>Activity</h1>
<Panel header="user1 contributed to project1">
item 1
</Panel>
<Panel header="user2 contributed to project2">
item 2
</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>