Conformance: feature task clear but after apply need to trued in Activity Selector.

This commit is contained in:
chiayin
2023-08-07 16:25:25 +08:00
parent 19da6195ec
commit b84fe38609
5 changed files with 62 additions and 18 deletions

View File

@@ -1,6 +1,6 @@
<template>
<div class="space-y-2">
<div class="flex justify-start items-center pr-4" v-for="(act, index) in data" :key="index">
<div class="flex justify-start items-center pr-4" v-for="(act, index) in datadata" :key="index">
<span class="material-symbols-outlined text-primary mr-2">
check_circle
</span>
@@ -11,6 +11,19 @@
<script>
export default {
name: 'ResultCheck',
props:['data'],
props:['data', 'select'],
data() {
return {
datadata: null,
}
},
watch: {
data: function(newValue) {
this.datadata = newValue;
}
},
created() {
this.datadata = this.select;
},
}
</script>