index.vue 359B

12345678910111213141516171819
  1. <template>
  2. <div class="backIcon">
  3. <van-icon name="arrow-left" size="32px" color="#6b6c6d" @click="goBack" />
  4. </div>
  5. </template>
  6. <script setup>
  7. import { useRouter } from 'vue-router'
  8. const router = useRouter();
  9. const goBack = () => {
  10. router.back();
  11. }
  12. </script>
  13. <style lang="less" scoped>
  14. .backIcon {
  15. margin-left: 8px;
  16. margin-top: 8px;
  17. }
  18. </style>