index.vue
423 字节
<template>
<LazyHomeContentHasChildren
v-if="appData.children"
:childData="appData"
:routePath="routePath"
/>
<LazyHomeContentNoChildren
v-else
:childData="appData"
:routePath="routePath"
/>
</template>
<script lang="ts" setup>
withDefaults(
defineProps<{
appData: any;
routePath?: string; // 必须加 ? 表示可选
}>(),
{
routePath: "", // 默认值
},
);
</script>