パスからパラメーターを取得する
localhost:3000/post/12345/
にアクセスした時に12345
の部分を取得したい。
pages/
--| post/
-----| _id.vue
_id.vue
<template>
<section>
<p>{{ $route.params.id }}</p>
</section>
</template>
参考:動的なルーティング
Getパラメーターを取得する
localhost:3000/post/?id=12345
にアクセスした時に12345
の部分を取得したい。
pages/
--| post/
-----| index.vue
index.vue
<template>
<section>
<p>{{ $route.query.id }}</p>
</section>
</template>