1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| <template>
| <el-button text class="pl-0 pr-2 my-1" @click="goBack">
| <el-row align="middle">
| <Icon icon="mingcute:home-6-line" width="16" height="16" style="color: var(--el-color-primary)" />
| <el-text class="ml-1" style="color: var(--el-color-primary);">返回首页</el-text>
| </el-row>
| </el-button>
| </template>
| <script>
| export default {
| methods: {
| goBack() {
| this.$router.replace('/main/home')
| }
| }
| }
| </script>
|
|