README.md 13.0 KB
Newer Older
DCloud-WZF's avatar
DCloud-WZF 已提交
1 2
# uvue组件概述

W
x  
wanganxp 已提交
3 4 5 6 7 8 9
uni-app x支持的组件包括:
- 内置基础组件
- 自定义vue组件
- uts组件插件

不支持的组件包括:
- 小程序wxml组件
DCloud-WZF's avatar
DCloud-WZF 已提交
10 11 12

支持[easycom](/component/README.md#easycom)

W
x  
wanganxp 已提交
13
内置组件比较简单,扩展组件的2种方式详细介绍下
DCloud-WZF's avatar
DCloud-WZF 已提交
14

W
x  
wanganxp 已提交
15 16 17 18 19 20 21 22 23 24 25 26 27
- 自定义vue组件
	在components目录新建一个uvue/vue文件,按vue组件规范编写代码。
	
	组件界面通过uvue构造,script使用uts编写。
	
	返回的类型是组件实例[ComponentPublicInstance](../vue/api.md#ComponentPublicInstance)
	
- uts组件插件
	`uts组件插件`的名称可能有点拗口,这是因为是相对于另一个分类`uts api插件`
	
	它们同属于`uts插件`,是uni_modules。api插件指能力扩展,比如蓝牙api。而组件插件指界面元素扩展,比如video、map、lottie动画等。
	
	uts组件插件,指把原生的、需要在界面上显示的、内嵌于页面中整体排版的组件,编写uts代码调用原生sdk,通过uni_modules插件的方式集成到uni-app项目中。比如
DCloud-WZF's avatar
DCloud-WZF 已提交
28 29 30
	* lottie组件,使用uts调用原生的lottie sdk来开发组件,再引入页面中。[详见](https://ext.dcloud.net.cn/plugin?name=uni-animation-view)
	* video组件,其实官方的video,也是用uts组件插件实现的
	
W
x  
wanganxp 已提交
31 32 33 34 35 36 37
	uts组件插件,主要用于原生sdk涉及界面时,将其封装为界面组件。当然uts组件也是全端支持的。上述lottie组件也支持web端。
	
	在app端,它的内部界面是由原生sdk绘制的,而不是uvue代码绘制的。通过封装嵌入到uvue/nvue页面中。
	
	一个uts插件都是可以同时兼容uni-app x和uni-app js引擎版的。目前js引擎版仅支持内嵌于nvue页面中。所以上述lottie组件也是可以在app-nvue页面中使用的。
	
	uts组件的返回类型是dom元素[Element](../dom/element.md)
DCloud-WZF's avatar
DCloud-WZF 已提交
38 39 40
	
	uts组件插件的开发教程,[详见](/plugin/uts-component.md)

W
x  
wanganxp 已提交
41
**vue组件兼容性及注意事项:**
DCloud-WZF's avatar
DCloud-WZF 已提交
42 43 44

## props

DCloud-WZF's avatar
DCloud-WZF 已提交
45 46
- 仅支持[对象方式](https://cn.vuejs.org/guide/components/props.html#props-declaration)声明,不支持字符串数组方式声明。
- 仅支持直接在 `export default` 内部声明,不支持其他位置定义后,在 `export default` 中引用。
DCloud-WZF's avatar
DCloud-WZF 已提交
47
- 复杂数据类型需要通过 `PropType` 标记类型,[详见](https://cn.vuejs.org/guide/typescript/options-api.html#typing-component-props)
DCloud-WZF's avatar
DCloud-WZF 已提交
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
```ts
import { type PropType } from 'vue'

type Obj = { a: number }

export default {
	props: {
		num: {
			type: Number,
			required: true
		},
		str: {
			type: String,
			default: 'str',
			validator(value: string): boolean {
				return value.length > 0
      }
		},
		obj: {
			type: Object as PropType<Obj>,
			default: (): Obj => ({ a: 1 } as Obj)
		},
		arr: {
			type: Array as PropType<number[]>,
			default: (): number[] => [1, 2, 3]
		}
	}
}
```
DCloud-WZF's avatar
DCloud-WZF 已提交
77

78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
## 自定义组件 v-model 绑定复杂表达式 @v-model-complex-expression

自定义组件 `v-model` 绑定复杂表达式时,需要通过 `as` 指定类型。

```ts
<template>
  <my-input v-model="obj.str as string" />
</template>

<script lang="uts">
	type Obj = {
		str : string
	}
	export default {
		data() {
			return {
				obj: {
					str: "str"
				} as Obj
			}
DCloud-WZF's avatar
DCloud-WZF 已提交
98
		}
99 100 101 102
	}
</script>
```

DCloud-WZF's avatar
DCloud-WZF 已提交
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
## 自定义事件

- [v-model](tutorial/vue3-components.html#v-model-modifiers) 暂不支持 `capitalize` 修饰符。

## 计算属性和侦听器

- [watch deep](https://uniapp.dcloud.net.cn/tutorial/vue3-basics.html#%E9%80%89%E9%A1%B9-deep) 不支持
- [监听对象中单个属性](https://uniapp.dcloud.net.cn/tutorial/vue3-basics.html#%E7%9B%91%E5%90%AC%E5%AF%B9%E8%B1%A1%E4%B8%AD%E5%8D%95%E4%B8%AA%E5%B1%9E%E6%80%A7) 不支持

## 作用域插槽的类型

作用域插槽需在组件中指定插槽数据类型
```ts
// components/Foo.uvue
<view>
    <slot msg="test msg" />
</view>

import { SlotsType } from 'vue'
export default {
  slots: Object as SlotsType<{
    default: { msg: string }
  }>
}
// page.uvue
<view>
	<Foo>
		<template v-slot="slotProps">
			<text>{{ slotProps.msg }}</text>
		</template>
	</Foo>
</view>
```

DCloud-WZF's avatar
DCloud-WZF 已提交
137
## ref
DCloud-WZF's avatar
DCloud-WZF 已提交
138

DCloud-WZF's avatar
DCloud-WZF 已提交
139 140
`uni-app js 引擎版`中,非 `H5端` 只能用于获取自定义组件,不能用于获取内置组件实例(如:`view``text`)。\
`uni-app x` 中,内置组件会返回组件根节点的引用,自定义组件会返回组件实例。
DCloud-WZF's avatar
DCloud-WZF 已提交
141 142 143 144

**注意事项:**
- 如果多个节点或自定义组件绑定相同 `ref` 属性,将获取到最后一个节点或组件实例的引用。
-`v-for` 循环时,绑定 `ref` 属性会获取到节点或组件实例的集合。
DCloud-WZF's avatar
DCloud-WZF 已提交
145
-`uni-app x` 中,要访问 `$refs` 中的属性,需要使用索引方式。
DCloud-WZF's avatar
DCloud-WZF 已提交
146 147 148 149 150 151 152 153 154 155 156 157 158 159

::: preview

> uni-app js 引擎版

```ts
<template>
	<view>
		<text ref="text">text node</text>
		<Foo ref="foo" />
	</view>
</template>

<script lang="ts">
DCloud-WZF's avatar
DCloud-WZF 已提交
160 161
  import type { ComponentPublicInstance } from 'vue'

DCloud-WZF's avatar
DCloud-WZF 已提交
162 163
	export default {
		onReady() {
DCloud-WZF's avatar
DCloud-WZF 已提交
164
			const text = this.$refs.text as Element // 仅H5端支持
DCloud-WZF's avatar
DCloud-WZF 已提交
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
			const foo = this.$refs.foo as ComponentPublicInstance
		}
	}
</script>
```

> uni-app x

```ts
<template>
	<view>
		<text ref="text">text node</text>
		<Foo ref="foo" />
	</view>
</template>

<script lang="uts">
DCloud-WZF's avatar
DCloud-WZF 已提交
182 183
  import type { ComponentPublicInstance } from 'vue'

DCloud-WZF's avatar
DCloud-WZF 已提交
184 185
	export default {
		onReady() {
DCloud-WZF's avatar
DCloud-WZF 已提交
186 187
			const text = this.$refs["text"] as Element
			const foo = this.$refs["foo"] as ComponentPublicInstance
DCloud-WZF's avatar
DCloud-WZF 已提交
188 189 190 191 192 193 194
		}
	}
</script>
```

:::

DCloud-WZF's avatar
DCloud-WZF 已提交
195 196 197 198 199 200
## 监听页面生命周期

目前暂不支持在组件内监听页面生命周期,待后续支持组合式 API 后,可通过组合式 API 实现。

## vue 与 uvue 不同文件后缀的优先级 @priority

W
x  
wanganxp 已提交
201
新建组件时,默认组件的后缀名为.uvue,但也支持.vue。
DCloud-WZF's avatar
DCloud-WZF 已提交
202 203 204 205 206 207 208 209 210 211 212

.vue里面写uvue的语法,可以正常被.uvue页面引用和编译。

.vue里写条件编译,可以制作同时满足uni-app和uni-app x的组件。

当你手动import或easycom手动配置规则,可以指定文件名后缀。比如`import PageHead from '@/components/page-head.uvue'`

但如果未明确指定组件后缀名的情况,且同一个组件目录下即存在.vue文件、又存在.uvue文件,
此时 `vue` 组件和 `uvue` 组件的优先级如下:
-`uni-app x` 中,优先使用 `uvue` 组件,如果不存在 `uvue` 组件,则使用 `vue` 组件。
-`uni-app` 中,只支持使用 `vue` 组件。
W
x  
wanganxp 已提交
213 214


H
hdx 已提交
215 216
## 调用组件方法@methods

W
x  
wanganxp 已提交
217
需要把组件分为 内置组件、easycom组件、非easycom组件,这3种组件有不同的方法调用方式。
H
hdx 已提交
218

W
x  
wanganxp 已提交
219
### 内置组件的方法调用或设置属性
H
hdx 已提交
220

W
x  
wanganxp 已提交
221
> 3.93+ 支持
H
hdx 已提交
222

W
x  
wanganxp 已提交
223
使用 `this.$refs` 获取组件并as转换为组件对应的element类型,通过 `.`操作符 调用组件方法或设置属性。
H
hdx 已提交
224 225 226 227 228

**语法**

```(this.$refs['组件ref属性值'] as Uni[xxx]Element).foo();```

W
x  
wanganxp 已提交
229
**内置组件的element类型规范**
H
hdx 已提交
230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254

Uni`组件名(驼峰)`Element

如:

`<button>`: UniButtonElement
`<picker-view>`: UniPickerViewElement

**示例代码**

```html
<template>
  <view>
    <slider ref="slider1"></slider>
  </view>
</template>

<script>
  export default {
    data() {
      return {
      }
    },
    onReady() {
      // value 为属性
W
x  
wanganxp 已提交
255
      (this.$refs["slider1"] as UniSliderElement).value = 10; //此处注意slider1必须存在,如不存在,把null as 成 UniSliderElement会引发崩溃
H
hdx 已提交
256 257 258 259 260
    }
  }
</script>
```

W
wanganxp 已提交
261 262 263 264
**bug&tips**

- 目前uts组件,即封装原生ui给uni-app或uni-app x的页面中使用,类型与内置组件的 Uni`组件名(驼峰)`Element 方式相同。目前没有代码提示,未来不排除更换方案的可能。

W
x  
wanganxp 已提交
265
### easycom组件调用方法或设置属性@method_easycom
H
hdx 已提交
266

267
> 3.97+ 支持 uni_modules 目录下的组件
H
hdx 已提交
268

W
x  
wanganxp 已提交
269
easycom组件,用法和内置组件一样。也是使用 `this.$refs` 获取组件并转换为组件的类型,通过 `.`操作符 调用组件方法或设置属性。
H
hdx 已提交
270 271 272 273 274

**语法**

```(this.$refs['组件ref属性值'] as 驼峰ComponentPublicInstance).foo();```

W
x  
wanganxp 已提交
275
**easycom组件的类型规范**
H
hdx 已提交
276 277 278 279 280 281 282 283

组件标签名首字母大写,驼峰+ComponentPublicInstance

如:

`<test/>` 类型为:TestComponentPublicInstance
`<uni-data-checkbox/>` 类型为:UniDataCheckboxComponentPublicInstance

W
x  
wanganxp 已提交
284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346
**示例代码**

假使有一个component1组件,其有若干方法foo1等,如下。

```html
<template>
  <view></view>
</template>

<script>
  export default {
    data() {
      return {
      }
    },
    methods: {
      foo1() {
		  console.log("foo1");
      },
      foo2(date1 : number) {
		  console.log(date1);
      },
      foo3(date1 : number, date2 : number) {
      },
      foo4(callback : (() => void)) {
        callback()
      },
      foo5(text1 : string) : any | null {
        return text1
      }
    }
  }
</script>
```

component1组件符合[easycom规范](https://uniapp.dcloud.net.cn/component/#easycom)

那么在页面中调用component1组件的方法如下:
```html
<template>
  <view>
    <component1 ref="component1"></component1>
  </view>
</template>

<script>
  export default {
    data() {
      return {
      }
    },
    onReady() {
      let c1 = (this.$refs["component1"] as Component1ComponentPublicInstance) //注意组件必须存在,注意类型首字母大写
      c1.foo1(); 
      c1.foo2(1); 
    }
  }
</script>
```

### 其它自定义组件的方法调用使用callMethod@$callMethod

如果不是内置组件,也不是easycom组件,那么无法使用`.`操作符了。
H
hdx 已提交
347

W
x  
wanganxp 已提交
348
此时需使用 `this.$refs` 获取组件实例,然后通过 `$callMethod` 调用组件的方法。也就是把组件的方法名、参数,当做callMethod的参数来传递。此时也就没有`.`操作符那样的代码提示和校验了。
H
hdx 已提交
349

W
x  
wanganxp 已提交
350
callMethod可用于所有自定义组件,包括easycom组件也可以使用,只不过easycom组件有更简单的用法。
H
hdx 已提交
351 352 353 354 355

**语法**

```this.$refs['组件ref属性值'].$callMethod('方法名', ...args)```

W
x  
wanganxp 已提交
356
**组件类型**
H
hdx 已提交
357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373

ComponentPublicInstance


页面示例代码 `page1.uvue`

```html
<template>
  <view>
    <component1 ref="component1"></component1>
  </view>
</template>

<script>
  // 导入 vue 组件实例类型
  import { ComponentPublicInstance } from 'vue'

W
x  
wanganxp 已提交
374
  // 非easycom组件需import引用组件 component1.uvue
H
hdx 已提交
375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444
  import component1 from './component1.uvue'

  export default {
    components: {
      component1
    },
    data() {
      return {
      }
    },
    onReady() {
      // 通过组件 ref 属性获取组件实例
      const component1 = this.$refs['component1'] as ComponentPublicInstance;

      // 通过 $callMethod 调用组件的 foo1 方法
      component1.$callMethod('foo1');

      // 通过 $callMethod 调用组件的 foo2 方法并传递 1个参数
      component1.$callMethod('foo2', Date.now());

      // 通过 $callMethod 调用组件的 foo3 方法并传递 2个参数
      component1.$callMethod('foo3', Date.now(), Date.now());

      // 通过 $callMethod 调用组件的 foo4 方法并传递 callback
      component1.$callMethod('foo4', () => {
        console.log('callback')
      });

      // 通过 $callMethod 调用组件的 foo5 方法并接收返回值
      // 注意: 返回值可能为 null,当前例子一定不为空,所以加了 !
      const result = component1.$callMethod('foo5', 'string1')! as string;
      console.log(result); // string1
    }
  }
</script>
```

组件示例代码 `component1.uvue`

```html
<template>
  <view></view>
</template>

<script>
  export default {
    data() {
      return {
      }
    },
    methods: {
      foo1() {
      },
      foo2(date1 : number) {
      },
      foo3(date1 : number, date2 : number) {
      },
      foo4(callback : (() => void)) {
        callback()
      },
      foo5(text1 : string) : any | null {
        return text1
      }
    }
  }
</script>
```



W
x  
wanganxp 已提交
445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471
## 如何开发同时兼容 uni-app x 和 uni-app 的组件

目前有两种方案:

- 目录下同时提供uvue,vue文件,分别适配 uni-app x 和 uni-app

组件作者在 uvue 和 vue 文件中可以自由使用各自的特性,比如 vue 中可以任意使用 js 或 ts 来书写代码,

如果部分组件逻辑被抽离为单独的文件,需要分别命名为各自环境支持的文件类型,导入时不同平台支持的文件类型也不同,

比如 uvue 文件目前不支持引入js或ts,而 vue 文件不能引入 uts 文件

对于现有的 uni-app 组件,通过新建 uvue 文件来渐进式支持 uni-app x,可以避免对已有 uni-app 项目造成影响

- 仅提供一个vue文件,同时适配 uni-app x 和 uni-app

该方案,需要script节点配置lang="ts",这样才可以在 uni-app 项目中正常书写带有类型的代码,而在 uni-app x 项目中,则会忽略 lang="ts",当做 uts 代码编译。

当需要区分平台或项目类型时,可以使用对应的条件编译。

<!-- 比如,当需要在 css 中区分原生渲染和webview渲染时

可以通过 APP-UVUE(表示在 uni-app x 项目app端的Android和iOS原生渲染)、APP-NVUE(表示在 uni-app 项目app端的nvue页面原生渲染) 区分,

`#ifdef APP-UVUE || APP-NVUE` 可以表示原生渲染,使用 `ifndef` 则可以取反表示为webview渲染,如 `#ifndef APP-UVUE || APP-NVUE`
 -->
比如通过 UNI-APP-X 来区分项目类型,更多条件编译见:[详情](https://uniapp.dcloud.net.cn/tutorial/platform.html)