0๐
I think you should change:
<a :href="[[ item.mongo_link ]]/[[stage.name]]">
to
<a :href="`${item.mongo_link}/${stage.name}`">
- [Vuejs]-Promise not executing as expected
- [Vuejs]-V-img load dynamic images raise eror [Vuetify] Image load failed
0๐
A bit cleaner way is using methods
methods: {
generateMongoLink(item) {
return item.mongo_link + '/' + stage.name"
}
}
Then in template
<a :href="generateMongoLink(item)">
- [Vuejs]-How i can make images in sidebar with two column
- [Vuejs]-How send comment.id to computed in vuejs?
Source:stackexchange.com