I am using v-for loop to show pagination links -
<div v-for="n in this.totalPages">
<router-link :to="'/top/pages/' + n" @click.native="getPaginatedUser">{{ n }}</router-link>
</div>
Each link is getting displayed in new line, like below -
Is there any way i can display them in single line ? like this -
Thanks.
<div>tag to<span>because<div>by default causes a line break.