提交 5bd082ee 编写于 作者: fxy060608's avatar fxy060608

wip(app): nvue lifecycle

上级 ae800a7e
......@@ -3602,7 +3602,13 @@ function applyOptions(instance) {
if (components) instance.components = components;
if (directives) instance.directives = directives;
if (directives) instance.directives = directives; // fixed by xxxxxx
var customApplyOptions = instance.appContext.config.globalProperties.$applyOptions;
if (customApplyOptions) {
customApplyOptions(options, instance, publicThis);
}
}
function resolveInjections(injectOptions, ctx) {
......
......@@ -2898,7 +2898,13 @@ function applyOptions(instance) {
if (components) instance.components = components;
if (directives) instance.directives = directives;
if (directives) instance.directives = directives; // fixed by xxxxxx
var customApplyOptions = instance.appContext.config.globalProperties.$applyOptions;
if (customApplyOptions) {
customApplyOptions(options, instance, publicThis);
}
}
function resolveInjections(injectOptions, ctx) {
......
......@@ -2915,6 +2915,12 @@ function applyOptions(instance) {
instance.components = components;
if (directives)
instance.directives = directives;
// fixed by xxxxxx
const customApplyOptions = instance.appContext.config.globalProperties
.$applyOptions;
if (customApplyOptions) {
customApplyOptions(options, instance, publicThis);
}
}
function resolveInjections(injectOptions, ctx, checkDuplicateProperties = NOOP, unwrapRef = false) {
if (isArray(injectOptions)) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册