lateral-detail.vue 461 B

123456789101112131415161718192021
  1. <script lang="ts" setup>
  2. import { useRouter } from 'vue-router';
  3. import { Fallback } from '@vben/common-ui';
  4. import { Button } from 'antdv-next';
  5. const router = useRouter();
  6. </script>
  7. <template>
  8. <Fallback
  9. description="面包屑导航-平级模式-详情页"
  10. status="coming-soon"
  11. title="注意观察面包屑导航变化"
  12. >
  13. <template #action>
  14. <Button @click="router.go(-1)">返回</Button>
  15. </template>
  16. </Fallback>
  17. </template>