wwf
昨天 34f5733bc1f126c572580fa849b9403dfcddd84b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<template>
  <el-row align="middle" class="pl-0 pr-2 py-2 cursor-p" @click="goBack">
    <Icon icon="mingcute:home-6-line" width="16" height="16" :style="{color: this.color}" />
    <el-text class="ml-1" :style="{color: this.color}">返回首页</el-text>
  </el-row>
</template>
<script>
export default {
  props: {
    color: {
      type: String,
      default: 'white'
    }
  },
  methods: {
    goBack() {
      this.$router.go('-1')
    }
  }
}
</script>