mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
chore: rename scopedSlots to slots in legacy cases
This commit is contained in:
parent
bea039c810
commit
2550ac9111
@ -125,7 +125,7 @@ test('columns-num prop', async () => {
|
||||
|
||||
test('title slot', async () => {
|
||||
const wrapper = mount(Area, {
|
||||
scopedSlots: {
|
||||
slots: {
|
||||
title: () => 'Custom Title',
|
||||
},
|
||||
});
|
||||
|
@ -302,7 +302,7 @@ test('title & footer slot', async () => {
|
||||
poppable: false,
|
||||
defaultDate: minDate,
|
||||
},
|
||||
scopedSlots: {
|
||||
slots: {
|
||||
title: () => 'Custom Title',
|
||||
footer: () => 'Custom Footer',
|
||||
},
|
||||
|
@ -44,7 +44,7 @@ test('click-thumb event', () => {
|
||||
|
||||
test('render price & num slot', () => {
|
||||
const wrapper = mount(Card, {
|
||||
scopedSlots: {
|
||||
slots: {
|
||||
num: () => 'Custom Num',
|
||||
price: () => 'Custom Price',
|
||||
},
|
||||
@ -55,7 +55,7 @@ test('render price & num slot', () => {
|
||||
|
||||
test('render origin-price slot', () => {
|
||||
const wrapper = mount(Card, {
|
||||
scopedSlots: {
|
||||
slots: {
|
||||
'origin-price': () => 'Custom Origin Price',
|
||||
},
|
||||
});
|
||||
@ -65,7 +65,7 @@ test('render origin-price slot', () => {
|
||||
|
||||
test('render bottom slot', () => {
|
||||
const wrapper = mount(Card, {
|
||||
scopedSlots: {
|
||||
slots: {
|
||||
bottom: () => 'Custom Bottom',
|
||||
},
|
||||
});
|
||||
@ -75,7 +75,7 @@ test('render bottom slot', () => {
|
||||
|
||||
test('render thumb & tag slot', () => {
|
||||
const wrapper = mount(Card, {
|
||||
scopedSlots: {
|
||||
slots: {
|
||||
tag: () => 'Custom Tag',
|
||||
thumb: () => 'Custom Thumb',
|
||||
},
|
||||
@ -86,7 +86,7 @@ test('render thumb & tag slot', () => {
|
||||
|
||||
test('render title & desc slot', () => {
|
||||
const wrapper = mount(Card, {
|
||||
scopedSlots: {
|
||||
slots: {
|
||||
title: () => 'Custom Title',
|
||||
desc: () => 'Custom desc',
|
||||
},
|
||||
@ -97,7 +97,7 @@ test('render title & desc slot', () => {
|
||||
|
||||
test('render price & price-top slot', () => {
|
||||
const wrapper = mount(Card, {
|
||||
scopedSlots: {
|
||||
slots: {
|
||||
price: () => 'Custom Price',
|
||||
'price-top': () => 'Custom Price-top',
|
||||
},
|
||||
|
@ -30,7 +30,7 @@ test('disabled', () => {
|
||||
|
||||
test('label disabled', () => {
|
||||
const wrapper = mount(Checkbox, {
|
||||
scopedSlots: {
|
||||
slots: {
|
||||
default: () => 'Label',
|
||||
},
|
||||
props: {
|
||||
@ -93,7 +93,7 @@ test('click event', async () => {
|
||||
|
||||
test('label-position prop', () => {
|
||||
const wrapper = mount(Checkbox, {
|
||||
scopedSlots: {
|
||||
slots: {
|
||||
default: () => 'Label',
|
||||
},
|
||||
props: {
|
||||
|
@ -108,7 +108,7 @@ test('default slot', () => {
|
||||
props: {
|
||||
value: true,
|
||||
},
|
||||
scopedSlots: {
|
||||
slots: {
|
||||
default: () => 'Custom Message',
|
||||
},
|
||||
});
|
||||
@ -120,7 +120,7 @@ test('title slot', () => {
|
||||
props: {
|
||||
value: true,
|
||||
},
|
||||
scopedSlots: {
|
||||
slots: {
|
||||
title: () => 'Custom Title',
|
||||
},
|
||||
});
|
||||
|
@ -26,7 +26,7 @@ test('click-input event', () => {
|
||||
|
||||
test('click-input event when using input slot', () => {
|
||||
const wrapper = mount(Field, {
|
||||
scopedSlots: {
|
||||
slots: {
|
||||
input: () => 'Custom Input',
|
||||
},
|
||||
});
|
||||
@ -224,7 +224,7 @@ test('clear-trigger prop', () => {
|
||||
|
||||
test('render input slot', () => {
|
||||
const wrapper = mount(Field, {
|
||||
scopedSlots: {
|
||||
slots: {
|
||||
input: () => 'Custom Input',
|
||||
},
|
||||
});
|
||||
@ -234,7 +234,7 @@ test('render input slot', () => {
|
||||
|
||||
test('render label slot', () => {
|
||||
const wrapper = mount(Field, {
|
||||
scopedSlots: {
|
||||
slots: {
|
||||
label: () => 'Custom Label',
|
||||
},
|
||||
});
|
||||
@ -244,7 +244,7 @@ test('render label slot', () => {
|
||||
|
||||
test('render extra slot', () => {
|
||||
const wrapper = mount(Field, {
|
||||
scopedSlots: {
|
||||
slots: {
|
||||
extra: () => 'Extra',
|
||||
},
|
||||
});
|
||||
|
@ -188,7 +188,7 @@ test('default slot', () => {
|
||||
props: {
|
||||
src: 'https://img.yzcdn.cn/vant/cat.jpeg',
|
||||
},
|
||||
scopedSlots: {
|
||||
slots: {
|
||||
default: () => 'Custom Default',
|
||||
},
|
||||
});
|
||||
|
@ -75,7 +75,7 @@ test('finished slot', async () => {
|
||||
props: {
|
||||
finished: true,
|
||||
},
|
||||
scopedSlots: {
|
||||
slots: {
|
||||
finished: () => 'Custom Finished',
|
||||
},
|
||||
});
|
||||
@ -88,7 +88,7 @@ test('error slot', async () => {
|
||||
props: {
|
||||
error: true,
|
||||
},
|
||||
scopedSlots: {
|
||||
slots: {
|
||||
error: () => 'Custom Error',
|
||||
},
|
||||
});
|
||||
|
@ -16,7 +16,7 @@ test('text-size prop', () => {
|
||||
props: {
|
||||
textSize: 20,
|
||||
},
|
||||
scopedSlots: {
|
||||
slots: {
|
||||
default: () => 'Text',
|
||||
},
|
||||
});
|
||||
|
@ -3,7 +3,7 @@ import { mount, mockGetBoundingClientRect } from '../../../test';
|
||||
|
||||
test('should render left/right slot and match snapshot', () => {
|
||||
const wrapper = mount(NavBar, {
|
||||
scopedSlots: {
|
||||
slots: {
|
||||
left: () => 'Custom Left',
|
||||
right: () => 'Custom Right',
|
||||
},
|
||||
@ -14,7 +14,7 @@ test('should render left/right slot and match snapshot', () => {
|
||||
|
||||
test('should render title slot and match snapshot', () => {
|
||||
const wrapper = mount(NavBar, {
|
||||
scopedSlots: {
|
||||
slots: {
|
||||
title: () => 'Custom Title',
|
||||
},
|
||||
});
|
||||
|
@ -85,7 +85,7 @@ test('render title', () => {
|
||||
|
||||
test('title-left slot', () => {
|
||||
const wrapper = mount(NumberKeyboard, {
|
||||
scopedSlots: {
|
||||
slots: {
|
||||
'title-left': () => 'Custom Title Left',
|
||||
},
|
||||
});
|
||||
@ -105,7 +105,7 @@ test('extra-key prop', () => {
|
||||
|
||||
test('extra-key slot', () => {
|
||||
const wrapper = mount(NumberKeyboard, {
|
||||
scopedSlots: {
|
||||
slots: {
|
||||
'extra-key': () => 'Custom Extra Key',
|
||||
},
|
||||
});
|
||||
|
@ -63,7 +63,7 @@ test('click event', () => {
|
||||
|
||||
test('default slot', () => {
|
||||
const wrapper = mount(Overlay, {
|
||||
scopedSlots: {
|
||||
slots: {
|
||||
default: () => 'Custom Default',
|
||||
},
|
||||
});
|
||||
|
@ -7,7 +7,7 @@ test('render prev-text & next-text slot', () => {
|
||||
totalItems: 50,
|
||||
showPageSize: 5,
|
||||
},
|
||||
scopedSlots: {
|
||||
slots: {
|
||||
'prev-text': () => 'Custom PrevText',
|
||||
'next-text': () => 'Custom NextText',
|
||||
},
|
||||
@ -22,7 +22,7 @@ test('render page slot', () => {
|
||||
totalItems: 50,
|
||||
showPageSize: 5,
|
||||
},
|
||||
scopedSlots: {
|
||||
slots: {
|
||||
page: ({ text }) => `${text}`,
|
||||
},
|
||||
});
|
||||
|
@ -261,7 +261,7 @@ test('columns-top、columns-bottom prop', () => {
|
||||
props: {
|
||||
showToolbar: true,
|
||||
},
|
||||
scopedSlots: {
|
||||
slots: {
|
||||
'columns-top': () => 'Custom Columns Top',
|
||||
'columns-bottom': () => 'Custom Columns Bottom',
|
||||
},
|
||||
|
@ -45,7 +45,7 @@ test('change head content when pulling down', async () => {
|
||||
|
||||
test('custom content by slots', async () => {
|
||||
const wrapper = mount(PullRefresh, {
|
||||
scopedSlots: {
|
||||
slots: {
|
||||
pulling({ distance }) {
|
||||
return `pulling ${distance}`;
|
||||
},
|
||||
@ -137,7 +137,7 @@ test('render success text', async () => {
|
||||
|
||||
test('render success slot', async () => {
|
||||
const wrapper = mount(PullRefresh, {
|
||||
scopedSlots: {
|
||||
slots: {
|
||||
success: () => 'Custom Success',
|
||||
},
|
||||
listeners: {
|
||||
|
@ -65,7 +65,7 @@ test('search event', () => {
|
||||
|
||||
test('label slot', () => {
|
||||
const wrapper = mount(Search, {
|
||||
scopedSlots: {
|
||||
slots: {
|
||||
label: () => 'Custom Label',
|
||||
},
|
||||
});
|
||||
@ -75,7 +75,7 @@ test('label slot', () => {
|
||||
|
||||
test('left slot', () => {
|
||||
const wrapper = mount(Search, {
|
||||
scopedSlots: {
|
||||
slots: {
|
||||
left: () => 'Custom Left Content',
|
||||
},
|
||||
});
|
||||
@ -105,7 +105,7 @@ test('right-icon prop', () => {
|
||||
|
||||
test('right-icon slot', () => {
|
||||
const wrapper = mount(Search, {
|
||||
scopedSlots: {
|
||||
slots: {
|
||||
'right-icon': () => 'Custom Right Icon',
|
||||
},
|
||||
});
|
||||
|
@ -75,7 +75,7 @@ test('title & description slot', () => {
|
||||
props: {
|
||||
value: true,
|
||||
},
|
||||
scopedSlots: {
|
||||
slots: {
|
||||
title: () => 'Custom Title',
|
||||
description: () => 'Custom Description',
|
||||
},
|
||||
|
@ -51,7 +51,7 @@ test('without price', () => {
|
||||
|
||||
test('top slot', () => {
|
||||
const wrapper = mount(SubmitBar, {
|
||||
scopedSlots: {
|
||||
slots: {
|
||||
top: () => 'Custom Top',
|
||||
},
|
||||
});
|
||||
@ -123,7 +123,7 @@ test('button-color prop', () => {
|
||||
test('button slot', () => {
|
||||
const wrapper = mount(SubmitBar, {
|
||||
buttonText: 'text',
|
||||
scopedSlots: {
|
||||
slots: {
|
||||
button: () => 'Custom button',
|
||||
},
|
||||
});
|
||||
|
@ -12,7 +12,7 @@ const defaultProps = {
|
||||
leftWidth: 100,
|
||||
rightWidth: 100,
|
||||
},
|
||||
scopedSlots: {
|
||||
slots: {
|
||||
left: () => 'Left',
|
||||
right: () => 'Right',
|
||||
},
|
||||
@ -120,7 +120,7 @@ test('auto calc width', async () => {
|
||||
});
|
||||
|
||||
const wrapper = mount(SwipeCell, {
|
||||
scopedSlots: defaultProps.scopedSlots,
|
||||
slots: defaultProps.scopedSlots,
|
||||
});
|
||||
|
||||
await later();
|
||||
@ -136,7 +136,7 @@ test('render one side', async () => {
|
||||
});
|
||||
|
||||
const wrapper = mount(SwipeCell, {
|
||||
scopedSlots: {
|
||||
slots: {
|
||||
left: defaultProps.scopedSlots.left,
|
||||
},
|
||||
});
|
||||
|
@ -127,7 +127,7 @@ test('content slot', () => {
|
||||
},
|
||||
],
|
||||
},
|
||||
scopedSlots: {
|
||||
slots: {
|
||||
content: () => 'Custom Content',
|
||||
},
|
||||
});
|
||||
|
@ -530,7 +530,7 @@ test('preview-cover slot', () => {
|
||||
props: {
|
||||
fileList: [{ url: IMAGE }, { url: IMAGE }],
|
||||
},
|
||||
scopedSlots: {
|
||||
slots: {
|
||||
'preview-cover': (item) => `url: ${item.url}, index: ${item.index}`,
|
||||
},
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user