tuandm / laravue

Admin dashboard for enterprise Laravel applications built by VueJS and Element UI https://laravue.dev
https://laravue.dev
MIT License
2.21k stars 654 forks source link

@keyup.enter.native="handleFilter" not working #260

Closed vulam8x closed 3 years ago

vulam8x commented 3 years ago

I enter keyword to search but the results are only done when clicking on the search button in the user search

TChrabanski commented 3 years ago

Change: @keyup.enter.native="handleFilter"

to

@input="handleFilter"

vulam8x commented 3 years ago

thank you! it worked.