In one of the guides for Vue framework I've seen the following passage.
<template>
<div id="blopp">
<ul>
<li @click="doStuff">Stuff</li>
<li @click="doThings">Things</li>
</ul>
</div>
</template>
I'd like to know what that means and how it affects the build. Googling gave nothing because google disregards special characters and common words when searching so all I got was a bunch of references to jQuery's API and some hits on W3Schools.
I have a hunch that it's got to do with WebPack transformations but it could be specific to Vue too.