mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
fix(NumberKeyboard): should inherit attrs when using teleport (#11274)
This commit is contained in:
parent
ccc0649cba
commit
772875535f
@ -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')}>
|
||||
|
@ -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();
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user