Is it possible to put double braces {{ }}
in a href tag?
<a href="{{link}}">Mylink</a>
var myObject = new Vue({
el: '#app',
data: {link: 'http://google.com'}
})
Thank you very much.
Is it possible to put double braces {{ }}
in a href tag?
<a href="{{link}}">Mylink</a>
var myObject = new Vue({
el: '#app',
data: {link: 'http://google.com'}
})
Thank you very much.
No, is not possible. The correct way is to use v-bind
:
<a v-bind:href="link">Mylink</a>
Or in shorthand:
<a :href="link">Mylink</a>