mirror of
https://github.com/jeecgboot/JeecgBoot.git
synced 2026-02-05 01:55:29 +08:00
14 lines
446 B
Java
14 lines
446 B
Java
<template>
|
|
<PageWrapper title="层级面包屑示例" content="子级页面面包屑会添加到当前层级后面">
|
|
<router-link to="/feat/breadcrumb/children/childrenDetail"> 进入子级详情页 </router-link>
|
|
</PageWrapper>
|
|
</template>
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
import { PageWrapper } from '/@/components/Page';
|
|
|
|
export default defineComponent({
|
|
components: { PageWrapper },
|
|
});
|
|
</script>
|