0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Vue.jsプロジェクト ルーターの設定

Posted at

ルートの定義

router/index.js
import Home from '/views/Home.vue' //コンポーネント名 from ファイルのパス
import Page from '/views/Page.vue'

 const routes = [
  {
    path: '/',            //urlの末尾を設定
    name: 'Home',         //routeの名前。省略可能。詳しくはrouter-linkのところ
    component: Home       //上でimportした対応させるコンポーネント 大文字に注意!
  },
  {	path:'/page',
	name:'firstpage',
	component:Page
  }
]

最初に読み込んでいるファイルはviewsのファイル。src/componentsのほうじゃない!:raised_hands_tone2:

$router.push


<script>
this.$router.push({name:'SerchResult'})   //path:'〇〇'でも可
</script>

router の機能の一つ。
違うurlに遷移する。書き方はいろいろある。

router-link

Home.vue
<template>
//下の2つはどちらも同じ!
 <router-link to='/page'>firstpageへのリンク</router-link>

 <router-link :to="{name:'firstpage'}">firstpageへのリンク</router-link>
</template>

下のコードのほうが、パスよりわかりやすい(気がする):v_tone2:
若干:があったりして凡ミスしてた。よく見ると違うね。
ルーターリンクも実は、ルータープッシュの機能を内部的に呼んでいるとのこと。
つまり、ルーターリンクを踏むことで、ルータープッシュしている。(公式より)

ルータープッシュとルーターリンク

どちらも、ページを切り替える。

router-link

HTMLのaタグみたいなもの。aタグと違って、ページを遷移しないので、早いように見える。らしい。
HTMLに書いてユーザーがポチッと押す。
templateの中に書く。

router.push

例えば、問い合わせフォームとかから、送信した後に、「送信が完了しました!」のページにうつるときに使う。
もしも。ルーターリンクを使ったら、ユーザーがポチッと押したら、仮に送信できていないくても完了しましたページには移ってしまう。
メソッドの中に書く。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?