remove prefixcls in data of layout

This commit is contained in:
zhigang.li 2017-12-19 11:48:46 +08:00
parent affc010b3b
commit fb4427cf1d
4 changed files with 0 additions and 16 deletions

View file

@ -5,11 +5,6 @@
const prefixCls = 'ivu-layout';
export default {
name: 'Content',
data () {
return {
prefixCls: prefixCls
};
},
computed: {
wrapClasses () {
return `${prefixCls}-content`;

View file

@ -5,11 +5,6 @@
const prefixCls = 'ivu-layout';
export default {
name: 'Footer',
data () {
return {
prefixCls: prefixCls
};
},
computed: {
wrapClasses () {
return `${prefixCls}-footer`;

View file

@ -5,11 +5,6 @@
const prefixCls = 'ivu-layout';
export default {
name: 'Header',
data () {
return {
prefixCls: prefixCls
};
},
computed: {
wrapClasses () {
return `${prefixCls}-header`;

View file

@ -8,7 +8,6 @@
name: 'Layout',
data () {
return {
prefixCls: prefixCls,
hasSider: false
};
},