fix: webhook编辑表格优化

This commit is contained in:
JiangQiming 2023-01-13 13:51:15 +08:00
parent 83c75f1ae6
commit bafa5ef62b
1 changed files with 2 additions and 2 deletions

View File

@ -79,8 +79,8 @@ const handleDelete = (id: number) => {
const handleAdd = () => {
dataSource.value.push({
id: dataSource.value.length,
key: `key ${dataSource.value.length + 1}`,
value: `value ${dataSource.value.length + 1}`,
key: '',
value: '',
});
};
</script>