Files
DiceCloud/app/imports/ui/tabletop/TabletopCreatureCard.vue
2020-07-17 23:31:12 +02:00

25 lines
357 B
Vue

<template lang="html">
<v-card>
<v-img
:src="model.picture"
aspect-ratio="1"
position="top center"
/>
<v-card-title>{{ model.name }}</v-card-title>
</v-card>
</template>
<script>
export default {
props: {
model: {
type: Object,
required: true,
},
},
}
</script>
<style lang="css" scoped>
</style>