We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8afbe9d commit 4573107Copy full SHA for 4573107
packages/vue-panels/src/views/interceptor/table.vue
@@ -218,9 +218,11 @@ export default {
218
this.modifyNotice(routes);
219
this.initList(routes);
220
},
221
- putData(row) {
+ async putData(row) {
222
this.tableData.push(row);
223
- this.modifyNotice(this.tableData);
+ const routes = await useInterceptorRoutes.getReal();
224
+ routes.push(row);
225
+ this.modifyNotice(routes);
226
227
async editData(row) {
228
const routes = await useInterceptorRoutes.getReal();
0 commit comments