feat: migrate Swipe component

This commit is contained in:
chenjiahan 2020-08-17 10:12:56 +08:00
parent 79511fe331
commit f978642277
5 changed files with 20 additions and 15 deletions

View File

@ -62,4 +62,6 @@ module.exports = [
'notify',
'collapse',
'collapse-item',
'swipe',
'swipe-item',
];

View File

@ -56,8 +56,8 @@ export default createComponent({
render() {
return (
<div class={bem()} style={this.style} {...{ on: this.$listeners }}>
{this.shouldRender && this.slots()}
<div class={bem()} style={this.style}>
{this.shouldRender ? this.$slots.default?.() : null}
</div>
);
},

View File

@ -12,7 +12,9 @@
<demo-block :title="t('title2')">
<van-swipe :autoplay="3000">
<van-swipe-item v-for="(image, index) in images" :key="index">
<img v-lazy="image" />
<img :src="image" />
<!-- TODO -->
<!-- <img v-lazy="image" /> -->
</van-swipe-item>
</van-swipe>
</demo-block>

View File

@ -62,6 +62,8 @@ export default createComponent({
},
},
emits: ['change'],
data() {
return {
rect: null,
@ -385,10 +387,9 @@ export default createComponent({
genIndicator() {
const { count, activeIndicator } = this;
const slot = this.slots('indicator');
if (slot) {
return slot;
if (this.$slots.indicator) {
return this.$slots.indicator();
}
if (this.showIndicators && count > 1) {
@ -414,7 +415,7 @@ export default createComponent({
style={this.trackStyle}
class={bem('track', { vertical: this.vertical })}
>
{this.slots()}
{this.$slots.default?.()}
</div>
{this.genIndicator()}
</div>

View File

@ -273,10 +273,10 @@ module.exports = {
path: 'sticky',
title: 'Sticky 粘性布局',
},
// {
// path: 'swipe',
// title: 'Swipe 轮播',
// },
{
path: 'swipe',
title: 'Swipe 轮播',
},
{
path: 'tag',
title: 'Tag 标记',
@ -607,10 +607,10 @@ module.exports = {
path: 'sticky',
title: 'Sticky',
},
// {
// path: 'swipe',
// title: 'Swipe',
// },
{
path: 'swipe',
title: 'Swipe',
},
{
path: 'tag',
title: 'Tag',