Started work on tabletop view
This commit is contained in:
24
app/imports/ui/tabletop/TabletopCreatureCard.vue
Normal file
24
app/imports/ui/tabletop/TabletopCreatureCard.vue
Normal file
@@ -0,0 +1,24 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user