VueJS从url中两种取值方式

两种取值方式

第一种 this.$route.params.lib_id

第一种是用于以下情况


    

{{subitem.artTitle}}

{{subitem.sell_price}}

库存 {{subitem.stock_quantity}} 市场价: {{subitem.market_price}}

第二种 this.$route.query.lib_id

  this.$router.push({ path: `/library/targets?lib_id=${index.LibId}` })
   //获取id
   let req_lib_id = this.$route.query.lib_id

你可能感兴趣的:(vue)