mirror of
https://github.com/mealie-recipes/mealie.git
synced 2026-04-06 13:05:36 -04:00
36 lines
552 B
Vue
36 lines
552 B
Vue
<template>
|
|
<v-alert
|
|
border="start"
|
|
variant="tonal"
|
|
type="warning"
|
|
elevation="2"
|
|
:icon="$globals.icons.alert"
|
|
>
|
|
<b v-if="title">{{ title }}</b>
|
|
<div v-if="description">
|
|
{{ description }}
|
|
</div>
|
|
<div
|
|
v-if="$slots.default"
|
|
class="py-2"
|
|
>
|
|
<slot />
|
|
</div>
|
|
</v-alert>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
defineProps({
|
|
title: {
|
|
type: String,
|
|
required: false,
|
|
default: "",
|
|
},
|
|
description: {
|
|
type: String,
|
|
required: false,
|
|
default: "",
|
|
},
|
|
});
|
|
</script>
|