js
<div class="search">
{{$route.params.things}}
<van-nav-bar fixed title="商品列表" left-arrow @click-left="$router.go(-1)" />
<van-search
readonly
shape="round"
background="#ffffff"
value="手机"
show-action
@click="$router.push('/search')"
>
<template #action>
<van-icon class="tool" name="apps-o" />
</template>
</van-search>
为什么一会用router 另一个又是route
在Vue.js中,router和route是两个不同的概念。
router是Vue Router的实例,它用于管理应用程序的路由。
route是当前路由的对象,它包含了当前页面的路由信息,例如路由路径、参数等。
在你提供的代码中,$router
是Vue Router实例的一个属性,用于进行页面跳转和导航操作,例如使用$router.push('/search')将会跳转到名为search的路由页面。
而$route是当前路由的对象, $route
.params.things表示从路由参数中获取名为things的参数值。
所以,$router
用于进行页面跳转和导航操作,而$route
用于获取当前路由的信息。