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" @click="goBack">
| <el-row align="middle">
| <Icon icon="icon-park-outline:left" width="22" height="22" style="color: black" />
| <el-text class="ml-1 text-lg font-medium" style="line-height: 25px;">返回</el-text>
| </el-row>
| </el-button>
| </template>
| <script>
| export default {
| methods: {
| goBack() {
| this.$router.go(-1)
| }
| }
| }
| </script>
|
|