You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
602 B
24 lines
602 B
import { inject } from 'vue';
|
|
import { injectExtraPropsKey } from './FunctionProvider';
|
|
export default {
|
|
name: 'MenuDivider',
|
|
inheritAttrs: false,
|
|
props: {
|
|
disabled: {
|
|
type: Boolean,
|
|
default: true,
|
|
},
|
|
rootPrefixCls: String,
|
|
},
|
|
setup() {
|
|
return {
|
|
injectExtraProps: inject(injectExtraPropsKey, () => ({})),
|
|
};
|
|
},
|
|
render() {
|
|
const { rootPrefixCls } = { ...this.$props, ...this.injectExtraProps };
|
|
const { class: className = '', style } = this.$attrs;
|
|
return <li class={[className, `${rootPrefixCls}-item-divider`]} style={style} />;
|
|
},
|
|
};
|