# 路由跳转
# VUE 方法
<template slot-scope="scope">
<router-link :to="'/***/***/' + scope.row.id" class="link-type">
<span>{{ scope.row.id }}</span>
</router-link>
</template>
# JS 方法
# 基础用法
this.$router.push('/**/**');
# 传参用法
搭配使用 前端模板
中的 Watch 方法
this.$router.push({
path: '/**/**',
query: {
row: row
}
});