mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-03-31 14:20:53 +08:00
fix(pop-select): not working with select-menu
This commit is contained in:
parent
ede19f130c
commit
ef7fea8e78
@ -18,6 +18,10 @@ export default {
|
||||
...NPopover.props.trigger,
|
||||
default: 'hover'
|
||||
},
|
||||
showArrow: {
|
||||
...NPopover.props.showArrow,
|
||||
default: false
|
||||
},
|
||||
...NPopselectPanel.props
|
||||
},
|
||||
methods: {
|
||||
|
@ -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(() => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user