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

时间:2019-01-21 09:07:53

标签: javascript vue.js bootstrap-vue

我正在使用引导程序创建表,该字段之一是链接,应使用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属性的操作

工作代码:

<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>

1 个答案:

答案 0 :(得分:1)

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