在vue中,对input框直接使用@click去触发事件,是无法达到想要的效果,也无法触发事件,需要加上native才能实现input框的点击事件触发,即@click.native="XXX"
vue
input
@click
native
@click.native="XXX"