Looking to include this property on my button:
uk-toggle="target: #id"
The desired outcome is:
<button uk-toggle="target: #id" type="button">Click</button>
I'm trying to achieve this with Vue.JS but I'm facing some difficulties. Here's what I have attempted:
<button v-bind: uk-toggle= "target: 'movie.title'" type="button">
Unfortunately, this approach isn't working. Any suggestions or insights? Thank you!