1.5 KiB
1.5 KiB
import Alert from "~/components/ui/Alert.vue"
Alert
Prop | Data type | Required? | Default | Description |
---|---|---|---|---|
color |
blue | red | purple | green | yellow |
No | secondary |
The color of the alert container |
Alert colors
Funkwhale alerts support a range of pastel colors for visual appeal.
Blue
<Alert blue>
Blue alert
</Alert>
Blue alert
Red
<Alert red>
Red alert
</Alert>
Red alert
Purple
<Alert purple>
Purple alert
</Alert>
Purple burglar alert
Green
<Alert green>
Green alert
</Alert>
Green alert
Yellow
<Alert yellow>
Yellow alert
</Alert>
Yellow alert
Alert actions
<Alert blue>
Awesome artist
<template #actions>
<Button disabled>Deny</Button>
<Button>Got it</Button>
</template>
</Alert>
Awesome artist
Deny
Got it