remove className props
This commit is contained in:
parent
f724eb5797
commit
1012b5cdaa
5 changed files with 3 additions and 42 deletions
|
@ -5,12 +5,6 @@
|
|||
const prefixCls = 'ivu-layout';
|
||||
export default {
|
||||
name: 'Content',
|
||||
props: {
|
||||
className: {
|
||||
type: String,
|
||||
default: ''
|
||||
}
|
||||
},
|
||||
data () {
|
||||
return {
|
||||
prefixCls: prefixCls
|
||||
|
@ -18,10 +12,7 @@
|
|||
},
|
||||
computed: {
|
||||
wrapClasses () {
|
||||
return [
|
||||
`${prefixCls}-content`,
|
||||
this.className
|
||||
];
|
||||
return `${prefixCls}-content`;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue