Skip to content
On this page

Page

页面组件。

PageWrapper

用于包裹页面的组件。

Usage

<template>
  <page-wrapper title="页面标题" content="页面介绍">
    页面内容
  </page-wrapper>
</template>

<script setup lang="ts">
import { PageWrapper } from '~/components/Page'
</script>

Props

属性类型默认值描述
titlestring-页面标题
contentstring-页面介绍
Page has loaded