mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +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({
|
export default defineComponent({
|
||||||
name,
|
name,
|
||||||
|
|
||||||
|
inheritAttrs: false,
|
||||||
|
|
||||||
props: numberKeyboardProps,
|
props: numberKeyboardProps,
|
||||||
|
|
||||||
emits: [
|
emits: [
|
||||||
@ -91,7 +93,7 @@ export default defineComponent({
|
|||||||
'update:modelValue',
|
'update:modelValue',
|
||||||
],
|
],
|
||||||
|
|
||||||
setup(props, { emit, slots }) {
|
setup(props, { emit, slots, attrs }) {
|
||||||
const root = ref<HTMLElement>();
|
const root = ref<HTMLElement>();
|
||||||
|
|
||||||
const genBasicKeys = () => {
|
const genBasicKeys = () => {
|
||||||
@ -282,6 +284,7 @@ export default defineComponent({
|
|||||||
})}
|
})}
|
||||||
onAnimationend={onAnimationEnd}
|
onAnimationend={onAnimationEnd}
|
||||||
onTouchstartPassive={stopPropagation}
|
onTouchstartPassive={stopPropagation}
|
||||||
|
{...attrs}
|
||||||
>
|
>
|
||||||
{Title}
|
{Title}
|
||||||
<div class={bem('body')}>
|
<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]);
|
clickKey(wrapper.findAll('.van-key')[12]);
|
||||||
expect(wrapper.emitted('blur')).toBeFalsy();
|
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