Page

基础组件 / Page组件

Page组件是业务的根组件, 用于包裹业务层, 仅此而已. 切记, template标签内有且只有一个标签, 且必须为Page, 例如这样:

源码:

传入属性 / Props:

Name Type Attributes Default Description
box Boolean <optional>
false 是否为盒子模型(固定高度宽度布局)

用法 / Usages

<template>
   <Page>
       <Header>
           <Navbar>
               <Title>Demo</Title>
           </Navbar>
       </Header>
       <Content>
           <h1>这里是内容</h1>
       </Content>
   </Page>
</template>