no message

Former-commit-id: 24eeb4f81eeb7369d02c362ded62b0f488aa5361
Former-commit-id: 90c0466974ab6e241d51894c87c7c5d9951d9866
Former-commit-id: e79975605ba0428165250197e3178bde4cff9b78
This commit is contained in:
李杨
2018-03-22 23:07:57 +08:00
parent 8a824c489e
commit 00e888efb0
8 changed files with 48 additions and 7 deletions

View File

@@ -1,4 +1,4 @@
基础页面容器
## 基础页面容器
高度根据内容适应

View File

@@ -1,4 +1,24 @@
> 这是一个较长的演示文章,仅仅是为了演示一些文字的显示效果
## 自适应填充页面容器
无论内容高度多少,都会自动撑满页面,并有可选的 `header``footer` 插槽
示例:
```
<template>
<Container type="card-full">
<template slot="header">
可选的 header 内容 ...
</template>
主体内容 ...
<template slot="footer">
可选的 footer 内容 ...
</template>
</Container>
</template>
```
下面是一个较长的演示文章,仅仅是为了演示一些文字的显示效果
## vue.js

View File

@@ -1,4 +1,4 @@
隐形页面容器
## 隐形页面容器
不显示任何背景色和边框

View File

@@ -17,7 +17,7 @@
<template>
<Container>
<template slot="header">
可选的header内容 ...
可选的 header 内容 ...
</template>
主体内容 ...
</Container>