How to listen a click on a vuikit icon ?
So this is how we are supposed to listen for a native click event Vue v-on:click does not work on component but that doesn't seem to work for the icons in https://vuikit.js.org/ has anyone faced this?
Given:
<template>
<div>
<div><vk-icons-cog v-on:click.native="onClick"></vk-icons-cog ></div> // doesn't work
<test-cmp v-on:click="onClick"></test-cmp> // works
</div>
</template>