Skip to content

Commit f7db3ee

Browse files
authored
fix: correct dropdown trigger type (#3611)
1 parent d221171 commit f7db3ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/dropdown/getDropdownProps.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { PropType } from 'vue';
33
import PropTypes from '../_util/vue-types';
44
export default () => ({
55
trigger: {
6-
type: Array as PropType<('click' | 'hover' | 'contextMenu')[]>,
6+
type: Array as PropType<('click' | 'hover' | 'contextmenu')[]>,
77
default: () => ['hover'],
88
},
99
overlay: PropTypes.any,

0 commit comments

Comments
 (0)