9 lines
324 B
Vue
9 lines
324 B
Vue
|
|
<template>
|
||
|
|
<Container>
|
||
|
|
<template slot="header">我是插入到 header 中的内容</template>
|
||
|
|
<p style="margin-top: 0px;">这是一个最基础的页面容器</p>
|
||
|
|
<p>它看起来像一个卡片</p>
|
||
|
|
<p style="margin-bottom: 0px;">它会将页面区域和导航区域区分开</p>
|
||
|
|
</Container>
|
||
|
|
</template>
|