
<el-button type="primary" @click="search()">查询// 跳转到搜索页面starsearch() {this.$router.push({path: "/search/searchResult"})},// 跳转到搜索页面end

这里要加/吧,是/searchResult
然后是this.$router.push({
path: "/searchResult"
})
this.$router.push("/searchResult")
this.$router.push({ name: 'search' })