diff --git a/package.json b/package.json index a330a6efe..6aa4cd977 100644 --- a/package.json +++ b/package.json @@ -113,12 +113,12 @@ "stylelint-config-standard": "^18.2.0", "uppercamelcase": "^3.0.0", "url-loader": "^1.1.2", - "vue": "2.6.1", + "vue": "2.6.2", "vue-jest": "4.0.0-beta.1", "vue-loader": "^15.6.2", "vue-router": "^3.0.2", - "vue-server-renderer": "^2.6.1", - "vue-template-compiler": "2.6.1", + "vue-server-renderer": "^2.6.2", + "vue-template-compiler": "2.6.2", "vue-template-es2015-compiler": "^1.8.2", "webpack": "^4.29.1", "webpack-cli": "^3.1.2", diff --git a/packages/actionsheet/index.js b/packages/actionsheet/index.js index af9d63452..0207845e1 100644 --- a/packages/actionsheet/index.js +++ b/packages/actionsheet/index.js @@ -83,7 +83,7 @@ export default sfc({ {cancelText} ) : ( -
{this.$slots.default}
+
{this.slots()}
); return ( diff --git a/packages/address-edit/index.js b/packages/address-edit/index.js index f30f667e2..792d87c0c 100644 --- a/packages/address-edit/index.js +++ b/packages/address-edit/index.js @@ -279,7 +279,7 @@ export default sfc({ onFocus={onFocus('postalCode')} /> )} - {this.$slots.default} + {this.slots()} {this.showSetDefault && ( - {this.$slots.top} + {this.slots('top')} this.$emit('input', event)}> {List} {this.disabledText &&
{this.disabledText}
} {DisabledList} - {this.$slots.default} + {this.slots()} ); } 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
    {this.$slots.default}
    ; + return
    {this.slots()}
    ; } }); 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 && (
    - {this.$slots.action ||
    {t('cancel')}
    } + {this.slots('action') ||
    {t('cancel')}
    }
    )} diff --git a/packages/sku/Sku.js b/packages/sku/Sku.js index aefceefb4..21e05006b 100644 --- a/packages/sku/Sku.js +++ b/packages/sku/Sku.js @@ -9,9 +9,9 @@ import SkuRowItem from './components/SkuRowItem'; import SkuStepper from './components/SkuStepper'; import SkuMessages from './components/SkuMessages'; import SkuActions from './components/SkuActions'; +import { use } from '../utils'; import { isAllSelected, isSkuChoosable, getSkuComb, getSelectedSkuValues } from './utils/skuHelper'; import { LIMIT_TYPE, UNSELECTED_SKU_VALUE_ID } from './constants'; -import { use, useSlots } from '../utils'; const [sfc] = use('sku'); const { QUOTA_LIMIT } = LIMIT_TYPE; @@ -367,7 +367,7 @@ export default sfc({ selectedSku, selectedSkuComb }; - const slots = name => useSlots(this)(name, slotsProps); + const slots = name => this.slots(name, slotsProps); const Header = slots('sku-header') || ( diff --git a/packages/sku/components/SkuHeader.js b/packages/sku/components/SkuHeader.js index e58647f28..76566f75e 100644 --- a/packages/sku/components/SkuHeader.js +++ b/packages/sku/components/SkuHeader.js @@ -46,7 +46,7 @@ export default sfc({
    {this.goods.title}
    - {this.$slots.default} + {this.slots()}
    {this.skuRow.k}:
    - {this.$slots.default} + {this.slots()}
    ); } diff --git a/packages/slider/index.js b/packages/slider/index.js index 6974bfe61..9e506e00d 100644 --- a/packages/slider/index.js +++ b/packages/slider/index.js @@ -96,7 +96,7 @@ export default sfc({ onTouchend={this.onTouchEnd} onTouchcancel={this.onTouchEnd} > - {this.$slots.button ||
    } + {this.slots('button') ||
    }
    diff --git a/packages/step/index.js b/packages/step/index.js index b883ace67..f53a14eab 100644 --- a/packages/step/index.js +++ b/packages/step/index.js @@ -30,7 +30,7 @@ export default sfc({ return (
    - {this.$slots.default} + {this.slots()}
    {status !== 'process' ? ( diff --git a/packages/steps/index.js b/packages/steps/index.js index 944bb0cb1..48c4dfc0a 100644 --- a/packages/steps/index.js +++ b/packages/steps/index.js @@ -28,10 +28,10 @@ export default sfc({ }, render(h) { - const { icon, title, description, $slots } = this; + const { icon, title, description, slots } = this; - const StatusIcon = ($slots.icon || icon) && ( -
    {$slots.icon || }
    + const StatusIcon = (slots('icon') || icon) && ( +
    {slots('icon') || }
    ); const StatusMessage = ( @@ -47,10 +47,10 @@ export default sfc({
    {StatusIcon} {StatusMessage} - {$slots['message-extra']} + {slots('message-extra')}
    )} -
    {$slots.default}
    +
    {slots()}
    ); } diff --git a/packages/swipe-cell/index.js b/packages/swipe-cell/index.js index 96f278e2b..72f56bbe8 100644 --- a/packages/swipe-cell/index.js +++ b/packages/swipe-cell/index.js @@ -148,13 +148,13 @@ export default sfc({ > {this.leftWidth && (
    - {this.$slots.left} + {this.slots('left')}
    )} - {this.$slots.default} + {this.slots()} {this.rightWidth && (
    - {this.$slots.right} + {this.slots('right')}
    )}
    diff --git a/packages/swipe-item/index.js b/packages/swipe-item/index.js index 849d9dc71..be2f913be 100644 --- a/packages/swipe-item/index.js +++ b/packages/swipe-item/index.js @@ -28,7 +28,7 @@ export default sfc({ return (
    - {this.$slots.default} + {this.slots()}
    ); } diff --git a/packages/swipe/index.js b/packages/swipe/index.js index deaf0cfcc..e4f3d47e8 100644 --- a/packages/swipe/index.js +++ b/packages/swipe/index.js @@ -265,7 +265,7 @@ export default sfc({ const { count, activeIndicator } = this; const Indicator = - this.$slots.indicator || + this.slots('indicator') || (this.showIndicators && count > 1 && (
    {Array(...Array(count)).map((empty, index) => ( @@ -288,7 +288,7 @@ export default sfc({ onTouchcancel={this.onTouchEnd} onTransitionend={this.onTransitionend} > - {this.$slots.default} + {this.slots()}
    {Indicator} diff --git a/packages/tab/index.js b/packages/tab/index.js index 7a0ab81ac..5af0aa92a 100644 --- a/packages/tab/index.js +++ b/packages/tab/index.js @@ -44,10 +44,10 @@ export default sfc({ mounted() { const { tabs } = this.parent; - const index = this.parent.$slots.default.indexOf(this.$vnode); + const index = this.parent.slots().indexOf(this.$vnode); tabs.splice(index === -1 ? tabs.length : index, 0, this); - if (this.$slots.title) { + if (this.slots('title')) { this.parent.renderTitle(this.$refs.title, this.index); } }, @@ -57,11 +57,11 @@ export default sfc({ }, render(h) { - const slots = this.$slots; + const { slots } = this; return (
    - {this.inited ? slots.default : h()} - {slots.title &&
    {slots.title}
    } + {this.inited ? slots() : h()} + {slots('title') &&
    {slots('title')}
    }
    ); } diff --git a/packages/tabbar-item/index.js b/packages/tabbar-item/index.js index 0e898695e..605e32c09 100644 --- a/packages/tabbar-item/index.js +++ b/packages/tabbar-item/index.js @@ -1,4 +1,4 @@ -import { use, useSlots } from '../utils'; +import { use } from '../utils'; import Icon from '../icon'; import Info from '../info'; import RouterLink from '../mixins/router-link'; @@ -37,8 +37,7 @@ export default sfc({ }, render(h) { - const { icon, active } = this; - const slots = useSlots(this); + const { icon, slots, active } = this; const style = active ? { color: this.$parent.activeColor } : null; return ( diff --git a/packages/tabbar/index.js b/packages/tabbar/index.js index 77a7a9719..5b414ccb2 100644 --- a/packages/tabbar/index.js +++ b/packages/tabbar/index.js @@ -53,7 +53,7 @@ export default sfc({ style={{ zIndex: this.zIndex }} class={['van-hairline--top-bottom', bem({ fixed: this.fixed })]} > - {this.$slots.default} + {this.slots()} ); } diff --git a/packages/tabs/index.js b/packages/tabs/index.js index 7afd0326b..4bb9e7212 100644 --- a/packages/tabs/index.js +++ b/packages/tabs/index.js @@ -418,10 +418,10 @@ export default sfc({
    {animated ? (
    - {this.$slots.default} + {this.slots()}
    ) : ( - this.$slots.default + this.slots() )}
    diff --git a/packages/uploader/index.js b/packages/uploader/index.js index d7986be7d..dace19820 100644 --- a/packages/uploader/index.js +++ b/packages/uploader/index.js @@ -95,7 +95,7 @@ export default sfc({ return (
    - {this.$slots.default} + {this.slots()} { - if ($scopedSlots[name]) { - return $scopedSlots[name](props); - } - return $slots[name]; - }; -} diff --git a/packages/utils/use/sfc.js b/packages/utils/use/sfc.js index 593ac8bd4..183a392b7 100644 --- a/packages/utils/use/sfc.js +++ b/packages/utils/use/sfc.js @@ -3,6 +3,7 @@ */ import '../../locale'; import { camelize } from '..'; +import SlotsMixin from '../../mixins/slots'; const arrayProp = { type: Array, @@ -50,6 +51,8 @@ function functional(sfc) { export default name => (sfc, isFunctional) => { sfc.name = name; sfc.install = install; + sfc.mixins = sfc.mixins || []; + sfc.mixins.push(SlotsMixin); if (sfc.props) { defaultProps(sfc.props); diff --git a/yarn.lock b/yarn.lock index c4e218dad..f9927a27f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -10274,10 +10274,10 @@ vue-router@^3.0.2: resolved "https://registry.yarnpkg.com/vue-router/-/vue-router-3.0.2.tgz#dedc67afe6c4e2bc25682c8b1c2a8c0d7c7e56be" integrity sha512-opKtsxjp9eOcFWdp6xLQPLmRGgfM932Tl56U9chYTnoWqKxQ8M20N7AkdEbM5beUh6wICoFGYugAX9vQjyJLFg== -vue-server-renderer@^2.6.1: - version "2.6.1" - resolved "https://registry.yarnpkg.com/vue-server-renderer/-/vue-server-renderer-2.6.1.tgz#a5076076ea1b1cd517e8556ea5362232d042606f" - integrity sha512-fpKjWYYqKceiJIJGigTcXBabbMi6g3KANhf64Gn4AzFo7bS/wzZkqCQYLRMjAjj6LQzfa7sPJBPSpMdpq/UAfg== +vue-server-renderer@^2.6.2: + version "2.6.2" + resolved "https://registry.yarnpkg.com/vue-server-renderer/-/vue-server-renderer-2.6.2.tgz#89faa6d87e94f9333276a4ee9cd39bece97059db" + integrity sha512-UAAKbYhcT9WRP7L4aRR/c6e/GXBj5lwR9H8AQ+b/lbwVwMauHyYNdhQzFmLFZfujNAjZK6+mQQVtdMoa2J8Y5g== dependencies: chalk "^1.1.3" hash-sum "^1.0.2" @@ -10296,10 +10296,10 @@ vue-style-loader@^4.1.0: hash-sum "^1.0.2" loader-utils "^1.0.2" -vue-template-compiler@2.6.1: - version "2.6.1" - resolved "https://registry.yarnpkg.com/vue-template-compiler/-/vue-template-compiler-2.6.1.tgz#b6a1b622acc602a556dcca2c1bf5d05afc7ac077" - integrity sha512-lHEnUkFcTPd99CprdTdA43hj29V1UlJiefCXWP3jJMjrz6wD1FQWEOCiCjwMXDEBstCWYscVjERtwzL0mJ1lJA== +vue-template-compiler@2.6.2: + version "2.6.2" + resolved "https://registry.yarnpkg.com/vue-template-compiler/-/vue-template-compiler-2.6.2.tgz#6230abf7ca92d565b7471c0cc3f54d5b12aa48e7" + integrity sha512-2dBKNCtBPdx1TFef7T4zwF8IjOx2xbMNryCtFzneP+XIonJwOtnkq4s1mhKv8W79gXcGINQWtuaxituGAcuSnA== dependencies: de-indent "^1.0.2" he "^1.1.0" @@ -10314,10 +10314,10 @@ vue-template-es2015-compiler@^1.8.2: resolved "https://registry.yarnpkg.com/vue-template-es2015-compiler/-/vue-template-es2015-compiler-1.8.2.tgz#dd73e80ba58bb65dd7a8aa2aeef6089cf6116f2a" integrity sha512-cliV19VHLJqFUYbz/XeWXe5CO6guzwd0yrrqqp0bmjlMP3ZZULY7fu8RTC4+3lmHwo6ESVDHFDsvjB15hcR5IA== -vue@2.6.1: - version "2.6.1" - resolved "https://registry.yarnpkg.com/vue/-/vue-2.6.1.tgz#2167a19e6489ff8082388f7c5f5caf56a32ddba9" - integrity sha512-ka6pgKZSa44+/11g+sD99Akajt0GceTnT8tagqLrQovXptgwaiLaEOHzMA/FLR07lGIfIR2UTHb69bTRBN71dA== +vue@2.6.2: + version "2.6.2" + resolved "https://registry.yarnpkg.com/vue/-/vue-2.6.2.tgz#1cc9c9c8f7ba8df45e9b97c284947de78b76301c" + integrity sha512-NZAb0H+t3/99g2nygURcEJ+ncvzNLPiEiFI5MGhc1Cjsw5uYprF+Ol7SOd1RXPcmVVzK7jUBl0th2tNgt+VQDg== w3c-hr-time@^1.0.1: version "1.0.1"