fix: prevent language&emoji pickers from overflowing (#735)

This commit is contained in:
Nicolò Ribaudo 2023-01-03 13:17:04 +01:00 committed by GitHub
parent b14add8c83
commit f4ff6ee35d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 2 deletions

View file

@ -3,6 +3,7 @@ import { InjectionKeyDropdownContext } from '~/constants/symbols'
defineProps<{
placement?: string
autoBoundaryMaxSize?: boolean
}>()
const dropdown = $ref<any>()
@ -19,7 +20,7 @@ defineExpose({
</script>
<template>
<VDropdown v-bind="$attrs" ref="dropdown" :class="colorMode.value" :placement="placement || 'auto'">
<VDropdown v-bind="$attrs" ref="dropdown" :class="colorMode.value" :placement="placement || 'auto'" :auto-boundary-max-size="autoBoundaryMaxSize">
<slot />
<template #popper="scope">
<slot name="popper" v-bind="scope" />