Vue Routerでparamsとqueryの取得方法です。
(よく忘れるので、備忘録です。)
# paramsの取得方法
localhost:8080/example/:id
→ this.$route.params['id']
# queryの取得方法
localhost:8080/example?itemId=1234
→ this.$route.query.itemId
Go to list of users who liked
More than 5 years have passed since last update.
Vue Routerでparamsとqueryの取得方法です。
(よく忘れるので、備忘録です。)
# paramsの取得方法
localhost:8080/example/:id
→ this.$route.params['id']
# queryの取得方法
localhost:8080/example?itemId=1234
→ this.$route.query.itemId
Register as a new user and use Qiita more conveniently
Go to list of users who liked