Commit a091c6e6 authored by Alexander Turinske's avatar Alexander Turinske

Update method name to align with Vue standards

parent 808f57df
......@@ -36,7 +36,7 @@ export default {
},
},
methods: {
notifyAboutUpdates(val) {
onInput(val) {
this.$emit('input', val);
},
},
......@@ -44,10 +44,5 @@ export default {
</script>
<template>
<editor-lite
:value="value"
file-name="*.yaml"
:editor-options="editorOptions"
@input="notifyAboutUpdates"
/>
<editor-lite :value="value" file-name="*.yaml" :editor-options="editorOptions" @input="onInput" />
</template>
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment