mirror of
https://github.com/mealie-recipes/mealie.git
synced 2026-04-06 04:55:35 -04:00
35 lines
467 B
Vue
35 lines
467 B
Vue
<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 setup lang="ts">
|
|
defineProps({
|
|
to: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
text: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
icon: {
|
|
type: String,
|
|
default: "",
|
|
},
|
|
});
|
|
</script>
|