fix(pop-select): not working with select-menu

This commit is contained in:
07akioni 2020-11-12 21:32:41 +08:00
parent ede19f130c
commit ef7fea8e78
2 changed files with 16 additions and 3 deletions

View File

@ -18,6 +18,10 @@ export default {
...NPopover.props.trigger,
default: 'hover'
},
showArrow: {
...NPopover.props.showArrow,
default: false
},
...NPopselectPanel.props
},
methods: {

View File

@ -2,7 +2,7 @@
<n-base-select-menu
:theme="mergedTheme"
:multiple="multiple"
:options="options"
:tree-mate="treeMate"
:size="size"
:value="value"
:width="width"
@ -13,6 +13,7 @@
</template>
<script>
import { createTreeMate } from 'treemate'
import { NBaseSelectMenu } from '../../_base'
import {
configurable,
@ -20,8 +21,7 @@ import {
withCssr
} from '../../_mixins'
import styles from './styles'
import { call } from '../../_utils/vue'
import { warn } from '../../_utils/naive'
import { call, warn } from '../../_utils'
export default {
components: {
@ -81,6 +81,15 @@ export default {
default: undefined
}
},
computed: {
treeMate () {
return createTreeMate(this.options, {
getKey (node) {
return node.value
}
})
}
},
watch: {
options () {
this.$nextTick(() => {