[Vuejs]-Is this the correct way to use Vue.JS onChange function?

0👍

Please first bind the drop down first on component life cycle hook created.
Then @OnChange you will get Id of select option. By using Id you can find name of select item.

let selectName=self.sel_role.filter(role => role.role_id.(selected)
!== -1).role_Display;

Leave a comment