VueJs Router in Webix Sidebar

Hi, I have troubles with sidebar:
Links not working with VueJs router.

I tried to customise with the template attribute like:
template: function(obj, common){
if(common.collapsed)
return common.icon(obj, common);
return common.arrow(obj, common)+common.icon(obj, common)+""+obj.value+"";
}
but the router-link tab is rendered in the html (like it was not recognized by VueJs).

How can I make running links with my VueJS router?

here is my Vue component: