1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-07-20 05:39:40 +02:00
mealie/frontend/components/global/ButtonLink.vue

37 lines
524 B
Vue
Raw Normal View History

<template>
<div>
<v-btn
variant="outlined"
class="rounded-xl my-1 mx-1"
:to="to"
>
<v-icon
v-if="icon != ''"
start
>
{{ icon }}
</v-icon>
{{ text }}
</v-btn>
</div>
</template>
<script lang="ts">
export default defineNuxtComponent({
props: {
to: {
type: String,
required: true,
},
text: {
type: String,
required: true,
},
icon: {
type: String,
default: "",
},
},
});
</script>