My current implementation uses a v-for
loop to display pagination links:
<div v-for="n in this.totalPages">
<router-link :to="'/top/pages/' + n" @click.native="getPaginatedUser">{{ n }}</router-link>
</div>
However, each link is currently displayed on a new line like this:
1
2
Is there a way to have them appear on a single line like this:
1 2
Thank you.