fix: minor bug in breadcrumb routing

This commit is contained in:
scmmishra 2019-04-13 18:53:49 +05:30
parent ff970a8062
commit 5b9df676a4

View File

@ -1,7 +1,7 @@
<template>
<div>
<span v-for="(route, index) in routeData">
<a href="route.route">{{ route.label }}</a><span> / </span>
<router-link :to="route.route">{{ route.label }}</router-link><span> / </span>
</span>
</div>
</template>