How to change users mentioned to a html a tag in a post? (VUE-NODE)

前端 未结 2 1839
忘了有多久
忘了有多久 2021-01-27 06:30

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

2条回答
  •  佛祖请我去吃肉
    2021-01-27 06:47

    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 }
      ]
    })
    

提交回复
热议问题