12345678910111213141516 |
- export default {
- name: 'MenuDivider',
- props: {
- disabled: {
- type: Boolean,
- 'default': true
- },
- rootPrefixCls: String
- },
- render: function render() {
- var h = arguments[0];
- var rootPrefixCls = this.$props.rootPrefixCls;
- return h('li', { 'class': rootPrefixCls + '-item-divider' });
- }
- };
|