How do I get vue-router to pass in multiple parameters in my case?

I have the following configuration. If the page jumps, then path will pass in a true.

{
    icon: "ios-barcode",
    size: "30",
    color: "-sharpff9900",
    path: "/home/aftersale_physicalserver_workpanel/true",
    name: "" + " (" + used_count + ") ",  // 
  },
  

my problem is that only one parameter can be passed in here.

how does such a configuration vue-router pass multiple parameters?

< hr >

Edit 1

when I use it in the template, it goes like this: router-link Jump:

                  <router-link :to="item.path">
                    <span class="icon">
                      <Icon :type="item.icon" :size="item.size" :color="item.color"></Icon>
                    </span>
                    <div class="icon-title">
                      <h3>{{item.name}}</h3>
                    </div>
                  </router-link>



  
Apr.07,2021

ide/essentials/passing-props.html-sharp%E5%AF%B9%E8%B1%A1%E6%A8%A1%E5%BC%8F" rel=" nofollow noreferrer "> routing component passing parameters-> function mode ,


if you want to transfer multiple parameters, it is recommended to use programmatic navigation
for example, I want to jump to the details page and transfer two parameters, no and name

.
this.$router.push({ path: '/index/detail', query: { no: "10001",name:"xiaoming" } })
Menu