add layout component with header, content, sider and footer

This commit is contained in:
zhigang.li 2017-12-18 18:25:16 +08:00
parent e6508e277f
commit a2eb028782
17 changed files with 509 additions and 4 deletions

View file

@ -0,0 +1,43 @@
<template>
<div :class="wrapClasses"><slot></slot></div>
</template>
<script>
const prefixCls = 'ivu-layout';
export default {
name: 'Layout',
props: {
className: {
type: String,
default: ''
}
},
data () {
return {
prefixCls: prefixCls,
hasSider: false
};
},
computed: {
wrapClasses () {
return [
`${prefixCls}`,
this.className,
{
[`${prefixCls}-has-sider`]: this.hasSider
}
];
}
},
methods: {
findSider () {
return this.$children.some(child => {
return child.$options._componentTag === 'Sider';
});
}
},
mounted () {
this.hasSider = this.findSider();
}
};
</script>