feat(FloatingBubble): use component attrs (#12171)

* feat(FloatingBubble): use component  attrs

* feat(FloatingBubble): use component  attrs
This commit is contained in:
ShuGang Zhou 2023-08-12 20:57:59 +08:00 committed by GitHub
parent 44d767e64f
commit e2f041fe0a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -63,11 +63,13 @@ const [name, bem] = createNamespace('floating-bubble');
export default defineComponent({
name,
inheritAttrs: false,
props: floatingBubbleProps,
emits: ['click', 'update:offset', 'offsetChange'],
setup(props, { slots, emit }) {
setup(props, { slots, emit, attrs }) {
const rootRef = ref<HTMLDivElement>();
const state = ref({
@ -224,6 +226,7 @@ export default defineComponent({
onClick={onClick}
style={rootStyle.value}
v-show={show.value}
{...attrs}
>
{slots.default ? (
slots.default()