投稿の削除イベントを受け取るように
This commit is contained in:
parent
1c65cb3e36
commit
b6a330928d
4 changed files with 19 additions and 4 deletions
|
|
@ -97,6 +97,17 @@ export default prop => ({
|
|||
this.$_ns_target.poll.choices.find(c => c.id === choice).votes++;
|
||||
break;
|
||||
}
|
||||
|
||||
case 'deleted': {
|
||||
Vue.set(this.$_ns_target, 'deletedAt', body.deletedAt);
|
||||
this.$_ns_target.text = null;
|
||||
this.$_ns_target.tags = [];
|
||||
this.$_ns_target.fileIds = [];
|
||||
this.$_ns_target.poll = null;
|
||||
this.$_ns_target.geo = null;
|
||||
this.$_ns_target.cw = null;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
this.$emit(`update:${prop}`, this.$_ns_note_);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue