Skip to content

Commit b298822

Browse files
committed
wip(app-vapor): 同步运行时
1 parent 90d7f3e commit b298822

File tree

8 files changed

+31
-3
lines changed

8 files changed

+31
-3
lines changed

packages/uni-app-vue/dist/uvue.vapor.runtime.esm.dev.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12043,6 +12043,10 @@ function createComponent(component, rawProps, rawSlots, isSingleRoot) {
1204312043
}
1204412044
initNativePage && initNativePage(instance.proxy);
1204512045
var setupResult = setupFn ? callWithErrorHandling(setupFn, instance, 0, [instance.props, instance]) || EMPTY_OBJ : EMPTY_OBJ;
12046+
var customApplyOptions = instance.appContext.config.globalProperties.$applyOptions;
12047+
if (customApplyOptions) {
12048+
customApplyOptions(component, instance, instance.proxy);
12049+
}
1204612050
initFontFace && initFontFace(instance.proxy);
1204712051
if (!isBlock(setupResult)) {
1204812052
if (isFunction(component)) {

packages/uni-app-vue/dist/uvue.vapor.runtime.esm.prod.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10486,6 +10486,10 @@ function createComponent(component, rawProps, rawSlots, isSingleRoot) {
1048610486
}
1048710487
initNativePage && initNativePage(instance.proxy);
1048810488
var setupResult = setupFn ? callWithErrorHandling(setupFn, instance, 0, [instance.props, instance]) || EMPTY_OBJ : EMPTY_OBJ;
10489+
var customApplyOptions = instance.appContext.config.globalProperties.$applyOptions;
10490+
if (customApplyOptions) {
10491+
customApplyOptions(component, instance, instance.proxy);
10492+
}
1048910493
initFontFace && initFontFace(instance.proxy);
1049010494
{
1049110495
if (!setupFn && component.render) {

packages/uni-app-vue/dist/uvue.vapor.runtime.harmony.esm.dev.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12043,6 +12043,10 @@ function createComponent(component, rawProps, rawSlots, isSingleRoot) {
1204312043
}
1204412044
initNativePage && initNativePage(instance.proxy);
1204512045
var setupResult = setupFn ? callWithErrorHandling(setupFn, instance, 0, [instance.props, instance]) || EMPTY_OBJ : EMPTY_OBJ;
12046+
var customApplyOptions = instance.appContext.config.globalProperties.$applyOptions;
12047+
if (customApplyOptions) {
12048+
customApplyOptions(component, instance, instance.proxy);
12049+
}
1204612050
initFontFace && initFontFace(instance.proxy);
1204712051
if (!isBlock(setupResult)) {
1204812052
if (isFunction(component)) {

packages/uni-app-vue/dist/uvue.vapor.runtime.harmony.esm.prod.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10486,6 +10486,10 @@ function createComponent(component, rawProps, rawSlots, isSingleRoot) {
1048610486
}
1048710487
initNativePage && initNativePage(instance.proxy);
1048810488
var setupResult = setupFn ? callWithErrorHandling(setupFn, instance, 0, [instance.props, instance]) || EMPTY_OBJ : EMPTY_OBJ;
10489+
var customApplyOptions = instance.appContext.config.globalProperties.$applyOptions;
10490+
if (customApplyOptions) {
10491+
customApplyOptions(component, instance, instance.proxy);
10492+
}
1048910493
initFontFace && initFontFace(instance.proxy);
1049010494
{
1049110495
if (!setupFn && component.render) {

packages/uni-app-vue/lib/uvue.vapor.runtime.esm.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10557,6 +10557,10 @@ function createComponent(component, rawProps, rawSlots, isSingleRoot, appContext
1055710557
instance.props,
1055810558
instance
1055910559
]) || EMPTY_OBJ : EMPTY_OBJ;
10560+
const customApplyOptions = instance.appContext.config.globalProperties.$applyOptions;
10561+
if (customApplyOptions) {
10562+
customApplyOptions(component, instance, instance.proxy);
10563+
}
1056010564
initFontFace && initFontFace(instance.proxy);
1056110565
if (!!(process.env.NODE_ENV !== "production") && !isBlock(setupResult)) {
1056210566
if (isFunction(component)) {

packages/uni-cli-shared/lib/vapor/@vue/runtime-vapor/dist/runtime-vapor.esm-bundler.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2230,6 +2230,10 @@ function createComponent(component, rawProps, rawSlots, isSingleRoot, appContext
22302230
instance.props,
22312231
instance
22322232
]) || EMPTY_OBJ : EMPTY_OBJ;
2233+
const customApplyOptions = instance.appContext.config.globalProperties.$applyOptions;
2234+
if (customApplyOptions) {
2235+
customApplyOptions(component, instance, instance.proxy);
2236+
}
22332237
initFontFace && initFontFace(instance.proxy);
22342238
if (!!(process.env.NODE_ENV !== "production") && !isBlock(setupResult)) {
22352239
if (isFunction(component)) {

packages/uni-cli-shared/lib/vapor/@vue/vue/dist/vue.runtime-with-vapor.esm-browser.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14645,6 +14645,10 @@ function createComponent(component, rawProps, rawSlots, isSingleRoot, appContext
1464514645
instance.props,
1464614646
instance
1464714647
]) || EMPTY_OBJ : EMPTY_OBJ;
14648+
const customApplyOptions = instance.appContext.config.globalProperties.$applyOptions;
14649+
if (customApplyOptions) {
14650+
customApplyOptions(component, instance, instance.proxy);
14651+
}
1464814652
initFontFace && initFontFace(instance.proxy);
1464914653
if (!isBlock(setupResult)) {
1465014654
if (isFunction(component)) {

packages/uni-cli-shared/lib/vapor/@vue/vue/dist/vue.runtime-with-vapor.esm-browser.prod.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)