I need to create a dynamic link which makes use of a bound variable. The "dynamism" of the link is done though a modification of the href field with a bound variable ip:
new Vue({
  el: "#app",
  data: {
    ip: "10.1.1.1"
  }
})<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.17-beta.0/vue.js"></script>
<div id="app">
  <a href="http://example.com/{{ip}}">{{ip}}</a>
</div>This does not work because {{ip}} is not interpolated and I get a warning
Interpolation inside attributes has been removed. Use
v-bindor the colon shorthand instead. For example, instead of<div id="{{ val }}">, use<div :id="val">.
Switching href= into :href= breaks the template:
new Vue({
  el: "#app",
  data: {
    ip: "10.1.1.1"
  }
})<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.17-beta.0/vue.js"></script>
<div id="app">
  <a :href="http://example.com/ip">{{ip}}</a>
</div>How can I use bound values in href?
EDIT: I cannot use a computed value (which would have been the first idea) because I am in a Buefy table and uses the data current to the row i am in (see https://codepen.io/WoJWoJ/pen/vrOgOX?editors=1010 for an example, the props.row elements properties are my ip)
 
     
    