fix: wave configprovide

pull/2351/head
tanjinzhou 2020-05-29 18:36:50 +08:00
parent ec4d6597d1
commit 3c292a51e1
3 changed files with 10 additions and 7 deletions

@ -1 +1 @@
Subproject commit adbfcd30aeb6c125defa35102ed659f1be03c672 Subproject commit f3b049411f17e556d8795f40d41bfadb471ae630

View File

@ -1,4 +1,4 @@
import { nextTick } from 'vue'; import { nextTick, inject } from 'vue';
import TransitionEvents from './css-animation/Event'; import TransitionEvents from './css-animation/Event';
import raf from './raf'; import raf from './raf';
import { ConfigConsumerProps } from '../config-provider'; import { ConfigConsumerProps } from '../config-provider';
@ -31,8 +31,11 @@ export default {
this.instance = this.bindAnimationEvent(node); this.instance = this.bindAnimationEvent(node);
}); });
}, },
inject: { setup() {
configProvider: { default: () => ConfigConsumerProps }, const configProvider = inject('configProvider', ConfigConsumerProps);
return {
configProvider,
};
}, },
beforeDestroy() { beforeDestroy() {
if (this.instance) { if (this.instance) {
@ -162,10 +165,10 @@ export default {
}, },
render() { render() {
const csp = this.configProvider().csp; const csp = this.configProvider.csp;
if (csp) { if (csp) {
this.csp = csp; this.csp = csp;
} }
return this.$slots.default() && this.$slots.default()[0]; return this.$slots.default && this.$slots.default()[0];
}, },
}; };

View File

@ -14,7 +14,7 @@ export default {
__ANT_BUTTON: true, __ANT_BUTTON: true,
props, props,
setup() { setup() {
const configProvider = inject('configProvider') || ConfigConsumerProps; const configProvider = inject('configProvider', ConfigConsumerProps);
return { return {
configProvider, configProvider,
}; };