🖥

#Vue で変数を利用した外部リンクを作る ( v-bind:href="variable" )

2020/01/27に公開

linkPath = "https://example.com" のように外部サイトの絶対パスを変数代入しておいて使いたい時

<a v-bind:href="linkPath">
  Link
</a>
<a :href="linkPath">
  Link
</a>

router link はアプリケーション内リンク用なので使えない

Original by Github issue

https://github.com/YumaInaura/YumaInaura/issues/2968

チャットメンバー募集

何か質問、悩み事、相談などあればLINEオープンチャットもご利用ください。

https://line.me/ti/g2/eEPltQ6Tzh3pYAZV8JXKZqc7PJ6L0rpm573dcQ

Twitter

https://twitter.com/YumaInaura

公開日時

2020-01-27

Discussion