//bug代码
<a :data-category1Id="item.categoryId" href="#" @click="jumpEvents">{{ item.categoryName }}</a>
this.$router.push(localtions)
会出现跳转2次的情况
//第一次
http://localhost:8080/#/search?category3id=165&categoryName=LED%E7%81%AF
//第二次
http://localhost:8080/#/
原因: 因为a标签带有href属性,导致push跳转后,href的#又一次跳转到默认路径首页
解决方案1: @click.private 可以取消a标签默认跳转#
解决方案2: 删除href属性