fix(NumberKeyboard): should inherit attrs when using teleport (#11274)

This commit is contained in:
neverland 2022-11-19 18:45:10 +08:00 committed by chenjiahan
parent ccc0649cba
commit 772875535f
2 changed files with 19 additions and 1 deletions

View File

@ -79,6 +79,8 @@ function shuffle(array: unknown[]) {
export default defineComponent({
name,
inheritAttrs: false,
props: numberKeyboardProps,
emits: [
@ -91,7 +93,7 @@ export default defineComponent({
'update:modelValue',
],
setup(props, { emit, slots }) {
setup(props, { emit, slots, attrs }) {
const root = ref<HTMLElement>();
const genBasicKeys = () => {
@ -282,6 +284,7 @@ export default defineComponent({
})}
onAnimationend={onAnimationEnd}
onTouchstartPassive={stopPropagation}
{...attrs}
>
{Title}
<div class={bem('body')}>

View File

@ -246,3 +246,18 @@ test('should not emit close event after clicking close button when blur-on-close
clickKey(wrapper.findAll('.van-key')[12]);
expect(wrapper.emitted('blur')).toBeFalsy();
});
test('should inherit attrs when using teleport prop', () => {
const root = document.createElement('div');
mount(NumberKeyboard, {
props: {
teleport: root,
},
attrs: {
class: 'foo',
},
});
const el = root.querySelector('.van-number-keyboard');
expect(el?.classList.contains('foo')).toBeTruthy();
});