Reputation: 11120
<td>{{ page.url }}</td>
<td>
<b-button href="#wiki/{{page.url}}" variant="primary">View</b-button>
</td>
I am trying to populate the href on my button.
I also have a router trying to do this
<script>
const router = new VueRouter({
routes:[{
path : '/:id',
name : 'wiki',
component : Detail
}
]
});
</script>
Upvotes: 0
Views: 19
Reputation: 14053
Use v-bind
or the colon shortcut
<b-button :href="'#wiki/' + page.url">
Upvotes: 2