Former-commit-id: deaeaf59342fb81432d84867968678cbf99128ce Former-commit-id: 2a71f19e25058b4a96b9cb7abb2d73668e954048 Former-commit-id: 5e78135187e2d3fd67dd92e836487a9b0ae8a29a
36 lines
839 B
Markdown
36 lines
839 B
Markdown
页面容器组件是每个页面的基础,为了在整个项目中统一效果,它应该是 `<template>` 组件的直接子组件
|
|
|
|
## 参数
|
|
|
|
| 参数名 | 介绍 | 必选 | 值类型 | 可选值 | 默认值 |
|
|
| --- | --- | --- | --- | --- | --- |
|
|
| type | 容器类型 | 非 | String | card ghost full-card | card |
|
|
| responsive | 响应式宽度 | 非 | Boolean | | false |
|
|
|
|
> `responsive` 参数设置只在 `type` 等于 `card` 或 `ghost` 时生效
|
|
|
|
## 使用方法
|
|
|
|
一个基础单文件页面组件的示例
|
|
|
|
```
|
|
<template>
|
|
<Container>
|
|
<template slot="header">
|
|
可选的header内容 ...
|
|
</template>
|
|
主体内容 ...
|
|
</Container>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'your-component-name'
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
// 需要的话引入
|
|
@import '~@/assets/style/public.scss';
|
|
</style>
|
|
``` |