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.

validate()メソッドを使って自動で作成されたパスを使用しなくする(Nuxt.js)

Last updated at Posted at 2020-09-14

なぜ必要か

Nuxt.jsでは/pagesディレクトリ内にvueファイルを作成すると自動でパスを作成してくれる機能がある。
しかし、pages/user/settingsみたいにuserパスを使わずsettingsパスのみを使いたい場合にもuserパスが使われてしまうので、使用できないようにする。

やり方

使用したくないパスのファイルに以下を記述

/pages/user.vue
<script>
export default {
  // 追加
  validate ({ route }) {
    return route.name !== 'user'
  }
}
</script>

解説

validate() はパスのアクセスを管理するメソッド。このメソッドによって使用したくないパスの管理ができる。

route.name !== 'user' はルート名が’user’ではない時にパスを通す。

これで/userにアクセスしても404エラーが表示される

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?