Blame view

src/views/demo/feat/breadcrumb/FlatList.vue 424 Bytes
1
<template>
2
  <PageWrapper title="平级面包屑示例" content="子级页面面包屑会覆盖当前层级">
3
    <router-link to="/feat/breadcrumb/flatDetail"> 进入平级详情页 </router-link>
4
  </PageWrapper>
5
6
7
</template>
<script lang="ts">
  import { defineComponent } from 'vue';
8
  import { PageWrapper } from '/@/components/Page';
9
10
11
12
  export default defineComponent({
    components: { PageWrapper },
  });
13
</script>