1
0
Fork 0
activist/src/views/HomeView.vue
Brian DeRocher 929f22abeb Upgrade dependencies.
Use user_id in places we were using username.  Still debating this.

Start getting this working with API backend, until there were calls to
/api/sticker which don't exist in the API yet.  Then I rediscovered the
local json-server.

So now there are 2 api backends.  We'll incrementally migrate from the
first version to the second.

SCSS and tailwind weren't working for nav-items.css.  The browser just
saw the raw version.  So for now, just inlined that.  Probably these
nav items will become components (if they are shared).
2025-10-22 09:19:37 -04:00

35 lines
736 B
Vue

<script setup lang="ts">
import Panel from 'primevue/panel';
import Button from "primevue/button";
</script>
<template>
<h1>Activity</h1>
<Panel header="user1 contributed to project1">
<Button
as="router-link"
to="/profile/b356ab50-4657-4b60-aba9-71a2baab3bfe">
Joe's Profile
</Button>
</Panel>
<Panel header="user2 contributed to project2">
<Button
as="router-link"
to="/profile/2f0ad329-4f24-4d22-8827-d1a5d3237a4d">
Kim's Profile
</Button>
</Panel>
<Panel header="user3 contributed to project3">
item 3
</Panel>
<Panel header="user4 contributed to project4">
item 4
</Panel>
</template>
<style scoped>
h1 {
font-size: 150%;
margin: 20px;
}
</style>