fix: correct dropdown trigger type (#3611)

pull/3641/head
zkwolf 2021-01-29 21:13:39 +08:00 committed by GitHub
parent d221171e53
commit f7db3ee718
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ import { PropType } from 'vue';
import PropTypes from '../_util/vue-types';
export default () => ({
trigger: {
type: Array as PropType<('click' | 'hover' | 'contextMenu')[]>,
type: Array as PropType<('click' | 'hover' | 'contextmenu')[]>,
default: () => ['hover'],
},
overlay: PropTypes.any,