diff --git a/src/components/AppNavigationItem/InputConfirmCancel.vue b/src/components/AppNavigationItem/InputConfirmCancel.vue index b890f70ebe..dcb0e101f4 100644 --- a/src/components/AppNavigationItem/InputConfirmCancel.vue +++ b/src/components/AppNavigationItem/InputConfirmCancel.vue @@ -51,18 +51,16 @@ export default { default: '', type: String, }, - }, - data() { - return { - value: '', - } + value: { + default: '', + type: String, + }, }, computed: { valueModel: { get() { return this.value }, set(newValue) { this.$emit('input', newValue) - this.value = newValue }, }, },