LoginSignup
22
15

More than 5 years have passed since last update.

[NUXT] 画面遷移リンクの作成方法2つ

Posted at

<router-link> を使う

index.vue
<router-link to="/">トップへ</router-lnk>

$router.push を使う

プログラム上での画面遷移には $router.push を使うので、これを使うこともできる。

index.vue
<a @click="$router.push('/')">トップへ</a>
22
15
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
22
15