2016-12-12 10:37:52 +08:00
|
|
|
<template>
|
2016-12-19 09:59:08 +08:00
|
|
|
<div :class="classes">
|
2016-12-12 10:37:52 +08:00
|
|
|
|
2016-12-19 09:59:08 +08:00
|
|
|
</div>
|
2016-12-12 10:37:52 +08:00
|
|
|
</template>
|
|
|
|
<script>
|
2016-12-19 09:59:08 +08:00
|
|
|
const prefixCls = 'ivu-picker-panel';
|
|
|
|
const datePrefixCls = 'ivu-date-picker';
|
|
|
|
|
2016-12-12 10:37:52 +08:00
|
|
|
export default {
|
|
|
|
props: {},
|
|
|
|
data () {
|
|
|
|
return {}
|
|
|
|
},
|
2016-12-19 09:59:08 +08:00
|
|
|
computed: {
|
|
|
|
classes () {
|
|
|
|
return [
|
|
|
|
`${prefixCls}-body-wrapper`,
|
|
|
|
{
|
|
|
|
[`${prefixCls}-with-sidebar`]: this.shortcuts.length
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
2016-12-12 10:37:52 +08:00
|
|
|
methods: {}
|
|
|
|
}
|
|
|
|
</script>
|