chore: import json data and display
This commit is contained in:
11
src/components/ChooseFood.vue
Normal file
11
src/components/ChooseFood.vue
Normal file
@@ -0,0 +1,11 @@
|
||||
<script lang="ts" setup>
|
||||
import recipeData from '~/data/recipe.json'
|
||||
import type { Recipe } from '~/types'
|
||||
const recipe = ref(recipeData as Recipe)
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<span v-for="item, i in recipe" :key="i" class="tag">{{ item.name }}</span>
|
||||
</div>
|
||||
</template>
|
||||
Reference in New Issue
Block a user