[improvement] Use scoped-slots in Vue 2.6+ (#2688)

This commit is contained in:
neverland
2019-02-05 22:16:55 +08:00
committed by GitHub
parent 1ea92c023c
commit f768e75bfe
45 changed files with 125 additions and 117 deletions
+1 -1
View File
@@ -106,7 +106,7 @@ export default sfc({
onAnimationend={this.onAnimationEnd}
onWebkitAnimationEnd={this.onAnimationEnd}
>
{this.$slots.default || this.text}
{this.slots() || this.text}
</div>
</div>
{iconName && <Icon class={bem('right-icon')} name={iconName} onClick={this.onClickIcon} />}