9 lines
189 B
Vue
9 lines
189 B
Vue
<script setup lang="ts">
|
|
const props = defineProps(['data'])
|
|
const cards = useState<{ [key: string]: any }>('cards')
|
|
</script>
|
|
|
|
<template>
|
|
{{ cards[props.data].name }}
|
|
|
|
|
</template> |