例えば以下の?がつくURLで1を取得したい場合
http://localhost:3000/maps?tweet_id=1
クエリパラメーターと言うみたいです
これで1が取得できます
.vue
<template>
<div id="app">
{{$route.query.tweet_id}}
</div>
</template>
詳細ページでよく見る以下のURLでは
http://localhost:3000/tweets/1
これで良いと思います
.vue
<template>
<div id="app">
{{$route.params.id}}
</div>
</template>
おまけ
axiosでJSONデータを取得するときなどはthisをつけると取得できます
.js
axios
.get(`/api/v1/tweets/${this.$route.params.id}/index.json`)
.then(response =>{
this.analyses = response.data;
})