1 import {onSelect} from "../services/dom";
5 this.removeButton = this.$refs.remove;
6 this.showButton = this.$refs.show;
7 this.input = this.$refs.input;
12 onSelect(this.removeButton, () => {
13 this.input.value = '';
14 this.input.classList.add('hidden');
15 this.removeButton.classList.add('hidden');
16 this.showButton.classList.remove('hidden');
19 onSelect(this.showButton, () => {
20 this.input.classList.remove('hidden');
21 this.removeButton.classList.remove('hidden');
22 this.showButton.classList.add('hidden');
28 export default OptionalInput;