You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
518 B
33 lines
518 B
<template> |
|
<div class="sth guide" @click="toPart" alt=""> |
|
返回 |
|
</div> |
|
</template> |
|
|
|
<script> |
|
export default { |
|
methods: { |
|
toPart() { |
|
this.$router.push('/index') |
|
} |
|
} |
|
} |
|
</script> |
|
|
|
<style lang="scss" scoped> |
|
.sth { |
|
position: absolute; |
|
&.cp { |
|
cursor: pointer; |
|
} |
|
} |
|
.guide { |
|
top: 90px; |
|
left: 0; |
|
width: 222px; |
|
cursor: pointer; |
|
&:hover { |
|
opacity: 0.9; |
|
} |
|
} |
|
</style> |