Lines Matching refs:input
79 emits: ['update:modelValue', 'input'],
103 // Access the native input element within the BFormFile component
106 // Try different ways to get the input element
107 let input = null;
109 // If $el is the input itself
111 input = refInput.$el;
113 // If $el is a wrapper, find the input inside
114 input = refInput.$el.querySelector('input[type="file"]');
118 if (!input && this.id) {
119 input = document.getElementById(this.id);
121 if (input && typeof input.click === 'function') {
122 input.click();
129 this.$emit('input', value);
137 this.$emit('input', file);
145 // Hide the native file input but keep it accessible
147 :deep(input[type='file']) {