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.
 
 
 
 

36 lines
439 B

<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>