mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-04 04:58:16 +08:00
41 lines
931 B
Vue
41 lines
931 B
Vue
<script>
|
|
import { Item, itemProps } from './src/index'
|
|
import { getClass, getStyle } from '../_util/vnode'
|
|
import Tooltip from '../tooltip'
|
|
|
|
export default {
|
|
props: itemProps,
|
|
inject: {
|
|
inlineCollapsed: { default: false },
|
|
},
|
|
isMenuItem: 1,
|
|
methods: {
|
|
onKeyDown (e) {
|
|
this.$refs.menuItem.onKeyDown(e)
|
|
},
|
|
},
|
|
render () {
|
|
const { inlineCollapsed, $props: props, $slots, $attrs: attrs, $listeners } = this
|
|
const itemProps = {
|
|
props,
|
|
attrs,
|
|
on: $listeners,
|
|
class: getClass(this),
|
|
style: getStyle(this),
|
|
}
|
|
return <Tooltip
|
|
placement='right'
|
|
overlayClassName={`${props.rootPrefixCls}-inline-collapsed-tooltip`}
|
|
>
|
|
<template slot='title'>
|
|
{inlineCollapsed && props.level === 1 ? $slots.default : ''}
|
|
</template>
|
|
<Item {...itemProps} ref='menuItem'>
|
|
{$slots.default}
|
|
</Item>
|
|
</Tooltip>
|
|
},
|
|
}
|
|
|
|
</script>
|