Vue style
This might be easier
<input type="file" ref="file" style="display: none" />
<button @click="$refs.file.click()">open file dialog</button>
If more is needed then $refs.file.$el should pointing to the DOM element. Here are the Properties and Methods that you can use.