chore: upgrade deps with nuxt

This commit is contained in:
YunYouJun
2024-12-30 02:02:12 +08:00
parent 7fe1f95d9d
commit e9b4d3ac38
12 changed files with 4474 additions and 5303 deletions

View File

@@ -1,9 +1,9 @@
<script lang="ts" setup>
import type { StuffItem } from '~/types'
import { storeToRefs } from 'pinia'
import { useEmojiAnimation } from '~/composables/animation'
import { meat, staple, tools, vegetable } from '~/data/food'
import type { StuffItem } from '~/types'
import { meat, staple, tools, vegetable } from '~/data/food'
const rStore = useRecipeStore()
const { curTool } = storeToRefs(rStore)

View File

@@ -1,6 +1,5 @@
<script lang="ts" setup>
// @ts-expect-error // Ignore this line
import VueAboutMe from 'vue-about-me'
import { VueAboutMe } from 'vue-about-me'
import 'vue-about-me/style.css'
const color = useColorMode()

View File

@@ -1,9 +1,9 @@
<script lang="ts" setup>
import type { RecipeItem } from '~/types'
import type { DbRecipeItem } from '~/utils/db'
import { recipeHistories } from '~/composables/store/history'
import { tools } from '~/data/food'
import type { RecipeItem } from '~/types'
import { getEmojisFromStuff } from '~/utils'
import type { DbRecipeItem } from '~/utils/db'
const props = defineProps<{
dish: RecipeItem | DbRecipeItem