| | |
| | | <el-divider /> |
| | | <div> |
| | | <el-scrollbar :height="height"> |
| | | <ItemSubTask v-for="s in data" :key="s.guid" :item="s"> |
| | | <template #default="{ item }"> |
| | | <el-button type="danger" size="small" @click="remove(item)" |
| | | >移除</el-button |
| | | > |
| | | </template> |
| | | </ItemSubTask> |
| | | <el-space fill direction="vertical"> |
| | | <ItemSubTask v-for="s in data" :key="s.guid" :item="s"> |
| | | <template #default="{ item }"> |
| | | <el-button type="danger" size="small" @click="remove(item)" |
| | | >移除</el-button |
| | | > |
| | | </template> |
| | | </ItemSubTask> |
| | | </el-space> |
| | | </el-scrollbar> |
| | | </div> |
| | | </template> |