In my Vue.js application, I have the following line of code:
<input type="text" v-on:input="cssClass=$event.target.value">
While I understand that in JavaScript I can access event.target.value, I am unsure if the code above is specific to Vue.js. Can someone confirm this for me?