| 12345678910111213141516171819202122232425262728293031 |
- <template>
- <v-card>
- <v-img
- height="64px"
- :src="img"
- :alt="title"
- />
- <v-card-title>{{ title }}</v-card-title>
- </v-card>
- </template>
- <script setup lang="ts">
- defineProps({
- title: {
- type: String,
- required: true
- },
- img: {
- type: String,
- required: true
- }
- })
- </script>
- <style scoped lang="scss">
- </style>
|