文章目录1. 通过router-link2. $router.push 1. 通过router-link <el-table-column label="条款类型" align="center"show-overflow-tooltip><template slot-scope="scope"><router-link :to="'/monitor/child' " class="link-type"> <!-- <router-link :to="'/monitor/child?clauseType='+scope.row.clauseType " class="link-type">--><span>{{ scope.row.clauseTitle }}</span></router-link></template></el-table-column> 2. $router.push ,{path: '/monitor',component: Layout,// redirect: ' /monitor',children: [{path: 'cl',component: () => import('@/views/system/cl'),name: 'cl'}]} this.$router.push({ path: '/monitor/cl' }).catch(() => {})