vue中数据更新通过v-model实现,向数组中添加数据通过push()实现,向shortcuts数组中动态添加newShortcut对象中的title和action

this.shortcuts.push({
title: this.newShortcut.title,
action: this.newShortcut.action
});

05-06 02:34