34 lines
431 B
Vue
34 lines
431 B
Vue
<template>
|
|
<view class="card">
|
|
<image :src="image_path" />
|
|
<p>{{value}}</p>
|
|
</view>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
props: {
|
|
image_path: {
|
|
type: String,
|
|
default: ""
|
|
},
|
|
value: {
|
|
type: [String, Number],
|
|
default: ""
|
|
}
|
|
},
|
|
data() {
|
|
return {}
|
|
},
|
|
methods: {}
|
|
}
|
|
</script>
|
|
<style>
|
|
|
|
.card image{
|
|
width: 100%;
|
|
margin-top: 1vh;
|
|
height: 9vh;
|
|
border: 1px black solid;
|
|
}
|
|
</style>
|