feat(List): add finished slot

This commit is contained in:
陈嘉涵
2019-12-26 20:10:26 +08:00
committed by neverland
parent 30b3e4b6ba
commit 8a0705d761
5 changed files with 29 additions and 4 deletions

View File

@@ -0,0 +1,8 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`finished slot 1`] = `
<div role="feed" class="van-list">
<div class="van-list__finished-text">Custom Finished</div>
<div class="van-list__placeholder"></div>
</div>
`;

View File

@@ -70,6 +70,19 @@ test('finished', async () => {
expect(wrapper.contains('.van-list__finished-text')).toBeFalsy();
});
test('finished slot', async () => {
const wrapper = mount(List, {
propsData: {
finished: true
},
scopedSlots: {
finished: () => 'Custom Finished'
}
});
expect(wrapper).toMatchSnapshot();
});
test('immediate check false', async () => {
const wrapper = mount(List, {
propsData: {