@@ -50,24 +50,24 @@ export default sfc({
);
- const Title = slots.title || (this.title &&
- {slots['origin-price'] || `${this.currency} ${this.originPrice}`}
+ {slots('origin-price') || `${this.currency} ${this.originPrice}`}
;
- const Footer = slots.footer && ;
+ const Footer = slots('footer') && ;
return (
@@ -76,7 +76,7 @@ export default sfc({
{Title}
{Desc}
- {slots.tags}
+ {slots('tags')}
{Price}
{OriginPrice}
diff --git a/packages/cell/index.js b/packages/cell/index.js
index 30d5828be..84a1fba5f 100644
--- a/packages/cell/index.js
+++ b/packages/cell/index.js
@@ -22,29 +22,29 @@ export default sfc({
},
render(h) {
- const slots = this.$slots;
- const showTitle = slots.title || isDef(this.title);
- const showValue = slots.default || isDef(this.value);
+ const { slots } = this;
+ const showTitle = slots('title') || isDef(this.title);
+ const showValue = slots() || isDef(this.value);
const Title = showTitle && (
- {slots.title ||
{this.title}}
+ {slots('title') ||
{this.title}}
{this.label &&
{this.label}
}
);
const Value = showValue && (
-
- {slots.default ||
{this.value}}
+
+ {slots() || {this.value}}
);
- const LeftIcon = slots.icon || (
+ const LeftIcon = slots('icon') || (
this.icon &&
);
const arrowIcon = this.arrowDirection ? `arrow-${this.arrowDirection}` : 'arrow';
- const RightIcon = slots['right-icon'] || (
+ const RightIcon = slots('right-icon') || (
this.isLink &&
);
@@ -63,7 +63,7 @@ export default sfc({
{Title}
{Value}
{RightIcon}
- {slots.extra}
+ {slots('extra')}
);
}
diff --git a/packages/checkbox-group/index.js b/packages/checkbox-group/index.js
index 2d50b8631..87254796c 100644
--- a/packages/checkbox-group/index.js
+++ b/packages/checkbox-group/index.js
@@ -16,6 +16,6 @@ export default sfc({
},
render(h) {
- return
{this.$slots.default}
;
+ return
{this.slots()}
;
}
});
diff --git a/packages/circle/index.js b/packages/circle/index.js
index f84efe7f9..3e33e1448 100644
--- a/packages/circle/index.js
+++ b/packages/circle/index.js
@@ -110,7 +110,7 @@ export default sfc({
- {this.$slots.default || (this.text &&
{this.text}
)}
+ {this.slots() || (this.text &&
{this.text}
)}
);
}
diff --git a/packages/col/index.js b/packages/col/index.js
index 616b1fffe..e372b7156 100644
--- a/packages/col/index.js
+++ b/packages/col/index.js
@@ -27,7 +27,7 @@ export default sfc({
const { span, offset } = this;
return (
- {this.$slots.default}
+ {this.slots()}
);
}
diff --git a/packages/collapse-item/index.js b/packages/collapse-item/index.js
index 24fcbd56b..98d0a04c0 100644
--- a/packages/collapse-item/index.js
+++ b/packages/collapse-item/index.js
@@ -116,8 +116,8 @@ export default sfc({
onClick={this.onClick}
{...{ props: this.$props }}
>
- {this.$slots.value}
- {CELL_SLOTS.map(slot => h('template', { slot }, this.$slots[slot]))}
+ {this.slots('value')}
+ {CELL_SLOTS.map(slot => h('template', { slot }, this.slots(slot)))}
);
@@ -129,7 +129,7 @@ export default sfc({
onTransitionend={this.onTransitionEnd}
>
- {this.$slots.default}
+ {this.slots()}
);
diff --git a/packages/collapse/index.js b/packages/collapse/index.js
index b209f5312..518312f36 100644
--- a/packages/collapse/index.js
+++ b/packages/collapse/index.js
@@ -27,6 +27,6 @@ export default sfc({
},
render(h) {
- return
{this.$slots.default}
;
+ return
{this.slots()}
;
}
});
diff --git a/packages/dialog/Dialog.js b/packages/dialog/Dialog.js
index 2d2163ba9..d9b046117 100644
--- a/packages/dialog/Dialog.js
+++ b/packages/dialog/Dialog.js
@@ -68,7 +68,7 @@ export default sfc({
}
const { title, message, messageAlign } = this;
- const children = this.$slots.default;
+ const children = this.slots();
const Title = title && (
diff --git a/packages/field/index.js b/packages/field/index.js
index 2d6b0ab17..49953715a 100644
--- a/packages/field/index.js
+++ b/packages/field/index.js
@@ -167,19 +167,19 @@ export default sfc({
},
render(h) {
- const { type, labelAlign, $slots: slots } = this;
+ const { type, labelAlign, slots } = this;
- const showLeftIcon = slots['left-icon'] || this.leftIcon;
- const showRightIcon = slots['right-icon'] || slots.icon || this.rightIcon || this.icon;
+ const showLeftIcon = slots('left-icon') || this.leftIcon;
+ const showRightIcon = slots('right-icon') || slots('icon') || this.rightIcon || this.icon;
const LeftIcon = showLeftIcon && (
- {slots['left-icon'] || }
+ {slots('left-icon') || }
);
const RightIcon = showRightIcon && (
- {slots['right-icon'] || slots.icon || }
+ {slots('right-icon') || slots('icon') || }
);
@@ -214,12 +214,12 @@ export default sfc({
})}
>
{LeftIcon}
- {h('template', { slot: 'title' }, slots.label)}
+ {h('template', { slot: 'title' }, slots('label'))}
{Input}
{this.showClear &&
}
{RightIcon}
- {slots.button &&
{slots.button}
}
+ {slots('button') &&
{slots('button')}
}
{this.errorMessage &&
{this.errorMessage}
}
diff --git a/packages/goods-action-big-btn/index.js b/packages/goods-action-big-btn/index.js
index 8440d9055..f4aa4541a 100644
--- a/packages/goods-action-big-btn/index.js
+++ b/packages/goods-action-big-btn/index.js
@@ -32,7 +32,7 @@ export default sfc({
type={this.primary ? 'danger' : 'warning'}
onClick={this.onClick}
>
- {this.$slots.default || this.text}
+ {this.slots() || this.text}
);
}
diff --git a/packages/goods-action-mini-btn/index.js b/packages/goods-action-mini-btn/index.js
index 19eecb3d0..18658ec5f 100644
--- a/packages/goods-action-mini-btn/index.js
+++ b/packages/goods-action-mini-btn/index.js
@@ -25,7 +25,7 @@ export default sfc({
return (
- {this.$slots.default || this.text}
+ {this.slots() || this.text}
);
}
diff --git a/packages/list/index.js b/packages/list/index.js
index cac5cfe82..b4a06d13d 100644
--- a/packages/list/index.js
+++ b/packages/list/index.js
@@ -116,10 +116,10 @@ export default sfc({
render(h) {
return (
- {this.$slots.default}
+ {this.slots()}
{this.loading && (
- {this.$slots.loading || [
+ {this.slots('loading') || [
,
{this.loadingText || t('loading')}
]}
diff --git a/packages/mixins/checkbox.js b/packages/mixins/checkbox.js
index f95e3d46f..19f54f004 100644
--- a/packages/mixins/checkbox.js
+++ b/packages/mixins/checkbox.js
@@ -1,7 +1,6 @@
/**
* Common part of Checkbox & Radio
*/
-import { useSlots } from '../utils';
import Icon from '../icon';
import findParent from './find-parent';
@@ -42,18 +41,18 @@ export default (parent, bem) => ({
},
render(h) {
- const { checked } = this;
- const slots = useSlots(this);
+ const { slots, checked } = this;
+
const CheckIcon = slots('icon', { checked }) || (
);
- const Label = slots('default') && (
+ const Label = slots() && (
- {slots('default')}
+ {slots()}
);
diff --git a/packages/mixins/slots.js b/packages/mixins/slots.js
new file mode 100644
index 000000000..a2e08ff93
--- /dev/null
+++ b/packages/mixins/slots.js
@@ -0,0 +1,16 @@
+/**
+ * Use scopedSlots in Vue 2.6+
+ * downgrade to slots in lower version
+ */
+
+export default {
+ methods: {
+ slots(name = 'default', props) {
+ const { $slots, $scopedSlots } = this;
+ if ($scopedSlots[name]) {
+ return $scopedSlots[name](props);
+ }
+ return $slots[name];
+ }
+ }
+};
diff --git a/packages/notice-bar/index.js b/packages/notice-bar/index.js
index 39e4386af..988fb78ba 100644
--- a/packages/notice-bar/index.js
+++ b/packages/notice-bar/index.js
@@ -106,7 +106,7 @@ export default sfc({
onAnimationend={this.onAnimationEnd}
onWebkitAnimationEnd={this.onAnimationEnd}
>
- {this.$slots.default || this.text}
+ {this.slots() || this.text}
{iconName &&
}
diff --git a/packages/pagination/index.js b/packages/pagination/index.js
index 2a76a6cc7..95aead243 100644
--- a/packages/pagination/index.js
+++ b/packages/pagination/index.js
@@ -127,7 +127,7 @@ export default sfc({
))}
{simple && (
-
{this.$slots.pageDesc || `${value}/${this.count}`}
+
{this.slots('pageDesc') || `${value}/${this.count}`}
)}
- {this.$slots.default || [
+ {this.slots() || [
{this.cancelButtonText || t('cancel')}
,
diff --git a/packages/popup/index.js b/packages/popup/index.js
index a09d0c048..c8d64ec2a 100644
--- a/packages/popup/index.js
+++ b/packages/popup/index.js
@@ -35,7 +35,7 @@ export default sfc({
onAfterLeave={emit('closed')}
>
- {this.$slots.default}
+ {this.slots()}
);
diff --git a/packages/pull-refresh/index.js b/packages/pull-refresh/index.js
index ce1c38be0..e7c145330 100644
--- a/packages/pull-refresh/index.js
+++ b/packages/pull-refresh/index.js
@@ -133,7 +133,7 @@ export default sfc({
transform: `translate3d(0,${this.height}px, 0)`
};
- const Status = this.$slots[status] || [
+ const Status = this.slots(status) || [
(status === 'pulling' || status === 'loosing') && {text}
,
status === 'loading' && (
@@ -154,7 +154,7 @@ export default sfc({
onTouchcancel={this.onTouchEnd}
>
{Status}
- {this.$slots.default}
+ {this.slots()}
);
diff --git a/packages/radio-group/index.js b/packages/radio-group/index.js
index 0c855f523..c0d5fbee9 100644
--- a/packages/radio-group/index.js
+++ b/packages/radio-group/index.js
@@ -15,6 +15,6 @@ export default sfc({
},
render(h) {
- return
;
}
});
diff --git a/packages/row/index.js b/packages/row/index.js
index 679bee39b..0d2f01256 100644
--- a/packages/row/index.js
+++ b/packages/row/index.js
@@ -32,7 +32,7 @@ export default sfc({
[`justify-${justify}`]: flex && justify
})}
>
- {this.$slots.default}
+ {this.slots()}
);
}
diff --git a/packages/search/index.js b/packages/search/index.js
index e7356b0d0..c190aeefe 100644
--- a/packages/search/index.js
+++ b/packages/search/index.js
@@ -63,11 +63,11 @@ export default sfc({
leftIcon="search"
{...props}
>
- {h('template', { slot: 'left-icon' }, this.$slots['left-icon'])}
+ {h('template', { slot: 'left-icon' }, this.slots('left-icon'))}
{showAction && (