gpt4 book ai didi

javascript - VueJs 使用 BootstrapVue 在新选项卡中打开 HREF

转载 作者:行者123 更新时间:2023-11-30 14:11:57 25 4
gpt4 key购买 nike

我正在使用 bootstrap 创建一个表,其中一个字段是一个链接,应该使用 target="_blank"

在新选项卡中打开

但是,由于某种原因它不起作用,知道为什么吗?

谢谢。

完整代码:

<b-table striped hover
:items="applications"
:filter="filter"
:fields="fields"
:bordered="true"
:small="true"
@filtered="onFiltered"
>
<template slot="lien" slot-scope="fields">
<a :href="fields.value" :target="_blank">
{{fields.value}}
</a>
</template>
</b-table>

编辑:

由于 Jom,修复了 target 属性的绑定(bind)

工作代码:

<b-table striped hover
:items="applications"
:filter="filter"
:fields="fields"
:bordered="true"
:small="true"
@filtered="onFiltered"
>
<template slot="lien" slot-scope="fields">
<a :href="fields.value" target="_blank">
{{fields.value}}
</a>
</template>
</b-table>

最佳答案

我认为您不需要绑定(bind)目标值,因为 _blank 不是模型

关于javascript - VueJs 使用 BootstrapVue 在新选项卡中打开 HREF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54286522/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com