LoginSignup
0
0

More than 3 years have passed since last update.

URLのパラメータ取得→ページ更新時にその値を元にいろいろする

Last updated at Posted at 2021-05-19

URLのパラメータ取得→ページ更新時にその値を元にいろいろする
https://router.vuejs.org/ja/guide/essentials/navigation.html

https://test.com?page=1
↓
this.$route.query.page // 1


https://test.com?page=1&submode=time
↓
this.$route.query.submode // time

参考URL

こちらの記事より🙏

# paramsの取得方法
localhost:8080/example/:id
→ this.$route.params['id']
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