Search code examples
javascriptjqueryvue.jswordpress-rest-apivue-directives

Pass a value from WP API do Vue href?


I'm trying to pass value from API to href but a run on error.

Here is code:

<a v-bind:href="'{{post.acf.link }}' ">See more</a>

My output is like this:

http://localhost:8080/%7B%7Bpost.acf.link%20%7D%7D

Please somebody help me?


Solution

  • This should be the correct syntax:

    <a v-bind:href="post.acf.link">See more</a>