1 回答

TA貢獻1966條經(jīng)驗 獲得超4個贊
刪除綁定登錄:,target然后id更改它們以popover1創(chuàng)建一個嵌套的 div,其中包含v-html具有 as value 的指令actions:
<template>
<div>
<b-button
id="popover1"
size="sm"
>
Button
</b-button>
<b-popover
target="popover1"
triggers="focus"
>
<div v-html="actions"></div>
</b-popover>
</div>
</template>
<script>
export default {
computed: {
actions() {
return [
`<a href="www.google.com">Google</a><br>`,
`<a href="www.youtube.com">Youtube</a><br>`
].join('')
}
}
}
</script>
如果id和target屬性綁定到屬性,則應(yīng)保留綁定符號。
添加回答
舉報