You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
439 B
37 lines
439 B
12 months ago
|
<template>
|
||
|
<view class="task_item">
|
||
|
<view class="task_text">
|
||
|
<view class="" v-for="(item, index) in propertyList" >
|
||
|
<view class="">
|
||
|
{{item.name}} : {{item.value}}
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
};
|
||
|
},
|
||
|
watch: {
|
||
|
|
||
|
},
|
||
|
|
||
|
props: {
|
||
|
propertyList: {
|
||
|
type: Object,
|
||
|
default: {}
|
||
|
},
|
||
|
},
|
||
|
|
||
|
methods: {
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
</style>
|