fixed #134
This commit is contained in:
梁灏 2016-12-19 09:59:08 +08:00
parent 6e572d4428
commit e0cd7f909a
5 changed files with 36 additions and 11 deletions

View file

@ -1,13 +1,27 @@
<template>
<div :class="classes">
</div>
</template>
<script>
const prefixCls = 'ivu-picker-panel';
const datePrefixCls = 'ivu-date-picker';
export default {
props: {},
data () {
return {}
},
computed: {},
computed: {
classes () {
return [
`${prefixCls}-body-wrapper`,
{
[`${prefixCls}-with-sidebar`]: this.shortcuts.length
}
]
}
},
methods: {}
}
</script>