Appearance
Appearance
WARNING
This component is tightly coupled with the Funkwhale app frontend in will be moved into ``/front/components` eventually.
import Activity from "~/components/ui/Activity.vue"Activities display history entries for a Funkwhale pod. Each item contains the following information:
| Prop | Data type | Required? | Description |
|---|---|---|---|
track | Track object | Yes | The track to render in the activity entry. |
user | User object | Yes | The user associated with the activity entry. |
NOTE
Track images are purely decorative (alt="")
You can render a single activity item by passing the track and user information to the <Activity> component.
<Activity :track="track" :user="user" />
You can display a list of activity items by passing a v-for directive and adding a key to the item. The key must be unique to the list.
INFO
Items in a list are visually separated by a 1px border.
<Activity :track="track" :user="user" v-for="i in 3" :key="i" />

