added height props

This commit is contained in:
Rijn 2017-01-17 16:39:07 -06:00
parent 8738f4d304
commit 9cd69375d8
4 changed files with 48 additions and 33 deletions

View file

@ -11,6 +11,7 @@
return {
prefixCls: prefixCls,
width: 0,
height: 'auto',
left: 0
};
},
@ -18,6 +19,7 @@
styles () {
return {
width: `${this.width}px`,
height: `${this.height}`,
left: `${this.left}px`
}
}