vue project, I have an order (order) list page, the corresponding path is: test/order/all, 
 and an order details page, corresponding path: test/order/detail?id=123456 
 want to dynamically route matching according to the order id, because there are strings (question mark, equal sign, order number) in the path, how should I write my Path? 
  
  { 
  path:"/order/detail?id=:id",
  component:OrderDetail,
},
 Path