Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-app
提交
5a913d36
U
uni-app
项目概览
DCloud
/
uni-app
3 个月 前同步成功
通知
725
Star
38705
Fork
3642
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
7
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
uni-app
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
7
Issue
7
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
5a913d36
编写于
9月 19, 2020
作者:
fxy060608
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat(mp): remove isCustomElement
上级
a1034d51
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
8 addition
and
8 deletion
+8
-8
packages/uni-h5/dist/uni-h5.esm.js
packages/uni-h5/dist/uni-h5.esm.js
+2
-2
packages/uni-h5/src/framework/plugin/index.ts
packages/uni-h5/src/framework/plugin/index.ts
+3
-0
packages/uni-mp-vue/dist/vue.runtime.esm.js
packages/uni-mp-vue/dist/vue.runtime.esm.js
+0
-2
packages/uni-shared/dist/uni.shared.esm.js
packages/uni-shared/dist/uni.shared.esm.js
+1
-0
packages/uni-shared/src/tags.ts
packages/uni-shared/src/tags.ts
+1
-0
packages/uni-vue/src/appConfig.ts
packages/uni-vue/src/appConfig.ts
+0
-2
packages/uni-vue/src/index.ts
packages/uni-vue/src/index.ts
+1
-2
未找到文件。
packages/uni-h5/dist/uni-h5.esm.js
浏览文件 @
5a913d36
import
{
isFunction
,
extend
,
isPlainObject
,
isPromise
,
isArray
,
hasOwn
}
from
"
@vue/shared
"
;
import
{
injectHook
,
openBlock
,
createBlock
,
createVNode
,
Fragment
,
renderList
,
toDisplayString
,
createCommentVNode
,
createTextVNode
,
Transition
,
withCtx
,
withModifiers
,
withDirectives
,
vShow
,
resolveComponent
,
KeepAlive
,
resolveDynamicComponent
,
mergeProps
,
renderSlot
}
from
"
vue
"
;
import
{
isCustomElement
,
TABBAR_HEIGHT
,
COMPONENT_NAME_PREFIX
,
NAVBAR_HEIGHT
}
from
"
@dcloudio/uni-shared
"
;
import
{
passiveOptions
,
Input
}
from
"
@dcloudio/uni-components
"
;
export
*
from
"
@dcloudio/uni-components
"
;
import
{
TABBAR_HEIGHT
,
COMPONENT_NAME_PREFIX
,
isCustomElement
,
NAVBAR_HEIGHT
}
from
"
@dcloudio/uni-shared
"
;
import
{
createWebHistory
,
createWebHashHistory
,
createRouter
}
from
"
vue-router
"
;
function
applyOptions
(
options
,
instance2
,
publicThis
)
{
Object
.
keys
(
options
).
forEach
((
name
)
=>
{
...
...
@@ -49,7 +49,6 @@ function initApp(app) {
if
(
isFunction
(
app
.
_component
.
onError
))
{
appConfig2
.
errorHandler
=
errorHandler
;
}
appConfig2
.
isCustomElement
=
isCustomElement
;
const
globalProperties
=
appConfig2
.
globalProperties
;
globalProperties
.
$hasHook
=
hasHook
;
globalProperties
.
$callHook
=
callHook
;
...
...
@@ -1820,6 +1819,7 @@ function initSystemComponents(app2) {
}
var
index
=
{
install
(
app
)
{
app
.
_context
.
config
.
isCustomElement
=
isCustomElement
;
initApp
(
app
);
initView
(
app
);
initService
(
app
);
...
...
packages/uni-h5/src/framework/plugin/index.ts
浏览文件 @
5a913d36
...
...
@@ -2,12 +2,15 @@ import { App } from 'vue'
import
{
initApp
}
from
'
@dcloudio/uni-vue
'
import
{
initView
,
initService
}
from
'
@dcloudio/uni-core
'
import
{
isCustomElement
}
from
'
@dcloudio/uni-shared
'
import
{
initRouter
}
from
'
./router
'
import
{
initSystemComponents
}
from
'
./components
'
export
default
{
install
(
app
:
App
)
{
app
.
_context
.
config
.
isCustomElement
=
isCustomElement
initApp
(
app
)
initView
(
app
)
initService
(
app
)
...
...
packages/uni-mp-vue/dist/vue.runtime.esm.js
浏览文件 @
5a913d36
import
{
isSymbol
,
extend
,
isMap
,
isObject
,
toRawType
,
def
,
isArray
,
isString
,
isFunction
,
isPromise
,
capitalize
,
remove
,
EMPTY_OBJ
,
NOOP
,
isGloballyWhitelisted
,
isIntegerKey
,
hasOwn
,
hasChanged
,
NO
,
invokeArrayFns
,
isSet
,
makeMap
,
hyphenate
,
isReservedProp
,
camelize
,
EMPTY_ARR
,
toTypeString
,
isOn
}
from
'
@vue/shared
'
;
export
{
camelize
}
from
'
@vue/shared
'
;
import
{
isCustomElement
}
from
'
@dcloudio/uni-shared
'
;
const
targetMap
=
new
WeakMap
();
const
effectStack
=
[];
...
...
@@ -3537,7 +3536,6 @@ function initApp(app) {
if
(
isFunction
(
app
.
_component
.
onError
))
{
appConfig
.
errorHandler
=
errorHandler
;
}
appConfig
.
isCustomElement
=
isCustomElement
;
const
globalProperties
=
appConfig
.
globalProperties
;
globalProperties
.
$hasHook
=
hasHook
;
globalProperties
.
$callHook
=
callHook
;
...
...
packages/uni-shared/dist/uni.shared.esm.js
浏览文件 @
5a913d36
...
...
@@ -52,6 +52,7 @@ const TAGS = [
'
uni-layout
'
,
'
uni-content
'
,
'
uni-main
'
,
'
uni-top-window
'
,
'
uni-left-window
'
,
'
uni-right-window
'
,
'
uni-tabbar
'
,
...
...
packages/uni-shared/src/tags.ts
浏览文件 @
5a913d36
...
...
@@ -3,6 +3,7 @@ export const TAGS = [
'
uni-layout
'
,
'
uni-content
'
,
'
uni-main
'
,
'
uni-top-window
'
,
'
uni-left-window
'
,
'
uni-right-window
'
,
'
uni-tabbar
'
,
...
...
packages/uni-vue/src/appConfig.ts
浏览文件 @
5a913d36
import
{
ComponentPublicInstance
}
from
'
@vue/runtime-core
'
export
{
isCustomElement
}
from
'
@dcloudio/uni-shared
'
export
function
errorHandler
(
err
:
unknown
,
instance
:
ComponentPublicInstance
|
null
,
...
...
packages/uni-vue/src/index.ts
浏览文件 @
5a913d36
...
...
@@ -4,14 +4,13 @@ import { isFunction } from '@vue/shared'
import
{
applyOptions
}
from
'
./componentOptions
'
import
{
set
,
hasHook
,
callHook
}
from
'
./componentInstance
'
import
{
errorHandler
,
isCustomElement
}
from
'
./appConfig
'
import
{
errorHandler
}
from
'
./appConfig
'
export
function
initApp
(
app
:
App
)
{
const
appConfig
=
app
.
_context
.
config
if
(
isFunction
((
app
.
_component
as
any
).
onError
))
{
appConfig
.
errorHandler
=
errorHandler
}
appConfig
.
isCustomElement
=
isCustomElement
const
globalProperties
=
appConfig
.
globalProperties
globalProperties
.
$hasHook
=
hasHook
globalProperties
.
$callHook
=
callHook
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录