12345678910111213141516171819202122232425 |
- <template>
- <div class="return-back" @click="returnBack()">返回</div>
- </template>
- <script>
- export default {
- // name: "header",
- methods: {
- returnBack(){
- this.$router.push("/");
- }
- },
- mounted() {
-
- },
- };
- </script>
- <style lang="scss" scoped>
- </style>
|