I have a body property that contains text that involves @username1 @username2. I want to change where are nicknames @user1 @user2 etc to router-links, its possible to do it with
Use named routes and params for route
Named routes:
const router = new VueRouter({ routes: [ // dynamic segments start with a colon { name:'user', path: '/profile/:username', component: User } ] })