Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
unidocs-zh
提交
86a8383c
unidocs-zh
项目概览
DCloud
/
unidocs-zh
通知
3172
Star
105
Fork
804
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
93
列表
看板
标记
里程碑
合并请求
67
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
unidocs-zh
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
93
Issue
93
列表
看板
标记
里程碑
合并请求
67
合并请求
67
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
86a8383c
编写于
12月 08, 2023
作者:
DCloud-WZF
💬
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
docs(uni-app-x): vue api 注意事项
上级
e19f5ad7
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
106 addition
and
0 deletion
+106
-0
docs/uni-app-x/vue/README.md
docs/uni-app-x/vue/README.md
+106
-0
未找到文件。
docs/uni-app-x/vue/README.md
浏览文件 @
86a8383c
...
...
@@ -11,6 +11,51 @@ uni-app x中vue的用法,有单独的示例应用:[hello uvue](https://gitco
### 应用实例 @app-instance
<!-- VUEJSON.application.compatibility -->
**注意:**
-
**app.use:**
`app.use`
支持通过对象字面量、函数及
`definePlugin`
方式定义插件。
\
支持传递插件参数,当传递插件参数时,
`app`
的类型需要指定为
`VueApp`
。
```
ts
// main.uts
export
function
createApp
()
{
const
app
=
createSSRApp
(
App
)
// 通过对象字面量方式注册插件
app
.
use
({
install
(
app
)
{
app
.
config
.
globalProperties
.
plugin1
=
"
plugin1
"
}
})
// 通过函数方式注册插件
app
.
use
(
function
(
app
)
{
app
.
config
.
globalProperties
.
plugin2
=
"
plugin2
"
})
// 通过 definePlugin + 对象字面量方式注册插件
const
plugin3
=
definePlugin
({
install
(
app
)
{
app
.
config
.
globalProperties
.
plugin3
=
"
plugin3
"
}
})
app
.
use
(
plugin3
)
// 通过 definePlugin + 函数方式注册插件
const
plugin4
=
definePlugin
(
function
(
app
)
{
app
.
config
.
globalProperties
.
plugin4
=
"
plugin4
"
})
app
.
use
(
plugin4
)
// 注册插件时传递参数
// 注意:当传递插件参数时,app 的类型需要指定为 VueApp
app
.
use
(
function
(
app
:
VueApp
,
arg1
:
string
,
arg2
:
string
)
{
app
.
config
.
globalProperties
.
plugin5
=
`
${
arg1
}
-
${
arg2
}
`
},
"
arg1
"
,
"
arg2
"
);
}
```
-
**globalProperties:**
请注意,
`globalProperties`
是一个保留关键字,因此在项目中请勿声明名为
`globalProperties`
的变量。
\
在向
`globalProperties`
注册方法时,请使用直接函数表达式方式进行赋值。不支持先声明函数,再将其注册到
`globalProperties`
上的方式。同时,注册的函数一旦被赋值,不允许进行修改。
### 通用
<!-- VUEJSON.general.compatibility -->
...
...
@@ -32,6 +77,11 @@ uni-app x中vue的用法,有单独的示例应用:[hello uvue](https://gitco
<!-- VUEJSON.directives.compatibility -->
**注意:**
-
**v-html:**
在
`App-android`
平台,
`v-html`
指令通过编译为
[
rich-text
](
uni-app-x/component/rich-text.md
)
组件实现。因此,
`v-html`
指令的内容必须是
`rich-text`
支持的格式, 并且要遵循标签嵌套规则,例如,
`swiper`
标签内只允许嵌套
`swiper-item`
标签。
\
同时,受限于
`rich-text`
组件不支持
`class`
样式,
`v-html`
指令中同样不支持
`class`
样式。
\
绑定
`v-html`
的标签内的内容会被忽略,
`v-html`
指令的内容会编译为
`rich-text`
组件渲染为该标签的子节点。
### 事件处理
-
[
事件修饰符
](
https://uniapp.dcloud.net.cn/tutorial/vue3-basics.html#%E4%BA%8B%E4%BB%B6%E4%BF%AE%E9%A5%B0%E7%AC%A6
)
只支持
`stop`
和
`once`
。
...
...
@@ -98,6 +148,62 @@ uni-app x 新增了 [onLastPageBackPress](collocation/App.md#applifecycle) 和 [
<!-- VUEJSON.options_composition.compatibility -->
**注意:**
-
**inject:**
当使用
`inject`
声明从上层提供方注入的属性时,支持两种写法:字符串数组和对象。推荐使用对象写法,因为当使用数组方法时,类型会被推导为
`any | null`
类型。
\
使用对象写法时,额外增加
`type`
属性用于标记类型。如果注入的属性类型不是基础数据类型,需要通过
`PropType`
来标记类型。
```
ts
export
default
{
inject
:
{
provideString
:
{
type
:
String
,
default
:
'
default provide string value
'
},
provideObject
:
{
type
:
Object
as
PropType
<
UTSJSONObject
>
},
provideMap
:
{
type
:
Object
as
PropType
<
Map
<
string
,
string
>>
,
default
:
():
Map
<
string
,
string
>
=>
{
return
new
Map
<
string
,
string
>
([[
'
key
'
,
'
default provide map value
'
]])
}
}
}
}
```
-
**mixins:**
`mixins`
仅支持通过字面量对象方式和
`defineMixin`
函数方式定义。
```
ts
const
mixin1
=
defineMixin
({
onLoad
()
{
console
.
log
(
'
mixin1 onLoad
'
)
}
})
export
default
{
mixins
:
[
mixin1
,
{
data
()
{
return
{
mixin2
:
'
mixin2
'
}
}
}
]
}
```
同名属性会被覆盖,同名生命周期会依次执行。
同名属性的优先级如下:
-
在
`app.mixin`
内嵌入的 mixin < 在
`app.mixin`
中声明的 mixin < 在
`page.mixin`
内嵌入的 mixin < 在
`page.mixin`
中声明的 mixin < 在
`component.mixin`
内嵌入的 mixin < 在
`component.mixin`
中声明的 mixin
同名生命周期的执行顺序如下:
1.
在
`app.mixin`
内嵌入的 mixin
2.
在
`app.mixin`
中声明的 mixin
3.
在
`page.mixin`
内嵌入的 mixin
4.
在
`page.mixin`
中声明的 mixin
5.
在
`component.mixin`
内嵌入的 mixin
6.
在
`component.mixin`
中声明的 mixin
### 其他杂项
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录