Files
cook/components/RandomRecipe.vue
2023-07-30 03:08:42 +08:00

13 lines
365 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<script lang="ts" setup>
const rStore = useRecipeStore()
</script>
<template>
<div class="inline-flex items-center justify-center">
今天吃什么<div class="transition" hover="text-blue-500" i-ri-refresh-line inline-block cursor-pointer @click="rStore.random" />
</div>
<div m="t-2">
<DishTag :dish="rStore.randomRecipe" />
</div>
</template>