README.md 18.1 KB
Newer Older
D
DCloud_LXH 已提交
1 2
# vue

W
wanganxp 已提交
3
uni-app x的vue规范,按照vue3规范实现,从4.0起支持组合式写法。
D
DCloud_LXH 已提交
4

D
DCloud_LXH 已提交
5 6
本文暂时只包括兼容性表格,vue功能详情另见 [vue3概述](https://uniapp.dcloud.net.cn/tutorial/vue3-basics.html#)[Vue3 API](https://uniapp.dcloud.net.cn/tutorial/vue3-api.html)

D
DCloud_LXH 已提交
7 8
uni-app x中vue的用法,有单独的示例应用:[hello uvue](https://gitcode.net/dcloud/hello-uvue)。这里都是可以跑通的使用样例代码。

D
DCloud_LXH 已提交
9 10 11 12 13
## 全局 API兼容性

### 应用实例 @app-instance

<!-- VUEJSON.application.compatibility -->
D
DCloud_LXH 已提交
14
<!-- VUEJSON.application.example -->
D
DCloud_LXH 已提交
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57

**注意:**
- **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");
}
```
- **app.config.globalProperties:** 请注意,`globalProperties` 是一个保留关键字,因此在项目中请勿声明名为 `globalProperties` 的变量。\
58 59
在向 `globalProperties` 注册方法时,请使用直接函数表达式方式进行赋值。不支持先声明函数,再将其注册到 `globalProperties` 上的方式。同时,注册的函数一旦被赋值,不允许进行修改。\
`globalProperties` 在编译时处理,因此确保你的操作在编译时是可知的。例如,将变量赋值给 `globalProperties` 时,这个变量在编译时必须是已知的,而不能是在运行时才能确定的变量。
D
DCloud_LXH 已提交
60

D
DCloud_LXH 已提交
61 62 63
### 通用

<!-- VUEJSON.general.compatibility -->
D
DCloud_LXH 已提交
64
<!-- VUEJSON.general.example -->
Q
qiang 已提交
65 66 67 68 69

#### nextTick 使用注意事项

目前 nextTick 可以保证当前数据已经同步到 DOM,但是由于排版和渲染是异步的的,所以 nextTick 不能保证 DOM 排版以及渲染完毕。如果需要获取排版后的节点信息推荐使用 [uni.createSelectorQuery](../api/nodes-info.md) 不推荐直接使用 [Element](../dom/element.md) 对象。在修改 DOM 后,立刻使用 [Element](../dom/element.md) 对象的同步接口获取 DOM 状态可能获取到的是排版之前的,而 [uni.createSelectorQuery](../api/nodes-info.md) 可以保障获取到的节点信息是排版之后的。

DCloud-WZF's avatar
DCloud-WZF 已提交
70
## 组合式 API @composition-api
D
DCloud_LXH 已提交
71

72 73 74 75 76 77
**注意:**
- 暂不支持 `<script setup>``<script>` 同时使用,如果需要配置 `options` 内容,比如 `name`,可以使用 `defineOptions`
- 暂不支持顶层 `await`
- 暂不支持 `<script setup>` 配置 `generic` 泛型类型参数。
- `App.uvue` 暂不支持组合式 API。

D
DCloud_LXH 已提交
78 79 80
### 响应式: 核心

<!-- VUEJSON.reactivity_core.compatibility -->
D
DCloud_LXH 已提交
81
<!-- VUEJSON.reactivity_core.example -->
82 83 84 85 86 87 88 89 90 91

**注意:**
- `computed` 需通过泛型指定返回值类型。
```ts
const count = ref(0)
const doubleCount = computed<number>(() : number => {
  return count.value * 2
})
```

D
DCloud_LXH 已提交
92 93 94
### 响应式: 工具

<!-- VUEJSON.reactivity_utilities.compatibility -->
D
DCloud_LXH 已提交
95
<!-- VUEJSON.reactivity_utilities.example -->
96 97 98 99

**注意:**
- `toRefs` 仅支持 `Array``UTSJSONObject`, 不支持自定义类型。

D
DCloud_LXH 已提交
100 101 102
### 响应式: 进阶

<!-- VUEJSON.reactivity_advanced.compatibility -->
D
DCloud_LXH 已提交
103
<!-- VUEJSON.reactivity_advanced.example -->
D
DCloud_LXH 已提交
104

D
DCloud_LXH 已提交
105 106 107
### 生命周期钩子

<!-- VUEJSON.composition_lifecycle.compatibility -->
108 109 110

[页面及组件生命周期流程图](/page.md#lifeCycleFlow)

D
DCloud_LXH 已提交
111
<!-- VUEJSON.composition_lifecycle.example -->
D
DCloud_LXH 已提交
112 113

#### [函数 event 参数的类型](../tutorial/codegap.md#function-event-argument-type)
D
DCloud_LXH 已提交
114

D
DCloud_LXH 已提交
115
### 指令 @directives
D
DCloud_LXH 已提交
116 117

<!-- VUEJSON.directives.compatibility -->
D
DCloud_LXH 已提交
118
<!-- VUEJSON.directives.example -->
D
DCloud_LXH 已提交
119

D
DCloud_LXH 已提交
120
**注意:**
D
DCloud_LXH 已提交
121
- **v-html:**`App-android` 平台,`v-html` 指令通过编译为 [rich-text](../component/rich-text.md) 组件实现。因此,`v-html` 指令的内容必须是 `rich-text` 支持的格式, 并且要遵循标签嵌套规则,例如, `swiper` 标签内只允许嵌套 `swiper-item` 标签。\
D
DCloud_LXH 已提交
122 123 124
同时,受限于 `rich-text` 组件不支持 `class` 样式,`v-html` 指令中同样不支持 `class` 样式。\
绑定 `v-html` 的标签内的内容会被忽略,`v-html` 指令的内容会编译为 `rich-text` 组件渲染为该标签的子节点。

D
DCloud_LXH 已提交
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
### 事件处理

- [事件修饰符](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`

## script

- 仅支持 `export default {}` 方式定义组件。
- `data` 仅支持函数返回对象字面量方式。
```ts
<script lang="uts">
	export default {
		data() {
			return {
				// 必须写这里
			}
		}
	}
</script>
```

145 146
## [Class 与 Style 绑定](https://uniapp.dcloud.net.cn/tutorial/vue3-basics.html#class-%E4%B8%8E-style-%E7%BB%91%E5%AE%9A)

DCloud_Heavensoft's avatar
DCloud_Heavensoft 已提交
147 148 149
- `uni-app x` 支持绑定  `UTSJSONObject``Map` 类型数据。

在App-Android平台上 `Map` 的性能高于 `UTSJSONObject` 数据类型。从 `uni-app x 4.01` 起,Web平台也支持了 `Map` 类型绑定。
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180

```html
<template>
  <view>
    <view :style="styleMap" :class="classMap"></view>
  </view>
</template>

<script lang="uts">
  export default {
    data() {
      return {
        styleMap: new Map<string, string>([['border', '2px solid red'], ['background-color', 'green']]),
        classMap: new Map<string, boolean>([['w-100', true], ['h-100', true], ['rounded', false]])
      }
    }
  }
</script>

<style>
  .w-100 {
    width: 100px;
  }
  .h-100 {
    height: 100px;
  }
  .rounded {
    border-radius: 8px;
  }
</style>
```
181

182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
### CSS 中的 v-bind()

|App|Web|
|:-:|:-:|
|x  |x  |

单文件组件的 `<style>` 标签支持使用 `v-bind` CSS 函数将 CSS 的值链接到动态的组件状态:

```html
<template>
  <div class="text">hello</div>
</template>

<script>
export default {
  data() {
    return {
      color: 'red'
    }
  }
}
</script>

<style>
.text {
  color: v-bind(color);
}
</style>
```

这个语法同样也适用于 `<script setup>`,且支持 UTS 表达式 (需要用引号包裹起来):

```html
<script setup>
const theme = {
  color: 'red'
}
</script>

<template>
  <p>hello</p>
</template>

<style scoped>
p {
  color: v-bind('theme.color');
}
</style>
```

D
DCloud_LXH 已提交
232
## 应用生命周期
D
DCloud_LXH 已提交
233
uni-app x 新增了 [onLastPageBackPress](../collocation/App.md#applifecycle)[onExit](../collocation/App.md#applifecycle) 应用级生命周期,Android退出应用逻辑写在app.uvue里,新建项目的模板自动包含相关代码。如需修改退出逻辑,请直接修改相关代码。
D
DCloud_LXH 已提交
234

DCloud-WZF's avatar
DCloud-WZF 已提交
235
## 组件 @component
D
DCloud_LXH 已提交
236

D
DCloud_LXH 已提交
237 238 239 240 241 242
- [props](../component/README.md#props)
- [自定义事件](../component/README.md#自定义事件)
- [计算属性和侦听器](../component/README.md#计算属性和侦听器)
- [作用域插槽的类型](../component/README.md#作用域插槽的类型)
- [监听页面生命周期](../component/README.md#监听页面生命周期)
- [vue 与 uvue 不同文件后缀的优先级](../component/README.md#priority)
D
DCloud_LXH 已提交
243

D
DCloud_LXH 已提交
244 245 246 247
::: warning 注意
1. App 端,如需页面级滚动,根节点必须是 `scroll-view` 标签。
:::

D
DCloud_LXH 已提交
248
<!-- VUEJSON.components.compatibility -->
D
DCloud_LXH 已提交
249
<!-- VUEJSON.components.example -->
D
DCloud_LXH 已提交
250
### 特殊元素 @special-elements
D
DCloud_LXH 已提交
251

D
DCloud_LXH 已提交
252 253 254 255
#### script

<!-- VUEJSON.script.description -->

256
<!-- VUEJSON.script.attribute -->
D
DCloud_LXH 已提交
257 258 259 260 261 262 263 264 265 266 267 268 269 270 271

<!-- VUEJSON.script.event -->

<!-- VUEJSON.script.example -->

<!-- VUEJSON.script.compatibility -->

<!-- VUEJSON.script.children -->

<!-- VUEJSON.script.reference -->

#### template

<!-- VUEJSON.template.description -->

272
<!-- VUEJSON.template.attribute -->
D
DCloud_LXH 已提交
273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288

<!-- VUEJSON.template.event -->

<!-- VUEJSON.template.example -->

<!-- VUEJSON.template.compatibility -->

<!-- VUEJSON.template.children -->

<!-- VUEJSON.template.reference -->


#### slot

<!-- VUEJSON.slot.description -->

289
<!-- VUEJSON.slot.attribute -->
D
DCloud_LXH 已提交
290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306

<!-- VUEJSON.slot.event -->

<!-- VUEJSON.slot.example -->

<!-- VUEJSON.slot.compatibility -->

<!-- VUEJSON.slot.children -->

<!-- VUEJSON.slot.reference -->



#### style

<!-- VUEJSON.style.description -->

307
<!-- VUEJSON.style.attribute -->
D
DCloud_LXH 已提交
308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323

<!-- VUEJSON.style.event -->

<!-- VUEJSON.style.example -->

<!-- VUEJSON.style.compatibility -->

<!-- VUEJSON.style.children -->

<!-- VUEJSON.style.reference -->


#### keep-alive

<!-- VUEJSON.keep-alive.description -->

324
<!-- VUEJSON.keep-alive.attribute -->
D
DCloud_LXH 已提交
325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340

<!-- VUEJSON.keep-alive.event -->

<!-- VUEJSON.keep-alive.example -->

<!-- VUEJSON.keep-alive.compatibility -->

<!-- VUEJSON.keep-alive.children -->

<!-- VUEJSON.keep-alive.reference -->


#### component

<!-- VUEJSON.component.description -->

341
<!-- VUEJSON.component.attribute -->
D
DCloud_LXH 已提交
342 343 344 345 346 347 348 349

<!-- VUEJSON.component.event -->

<!-- VUEJSON.component.example -->

<!-- VUEJSON.component.compatibility -->

<!-- VUEJSON.component.children -->
D
DCloud_LXH 已提交
350

D
DCloud_LXH 已提交
351
<!-- VUEJSON.component.reference -->
D
DCloud_LXH 已提交
352

D
DCloud_LXH 已提交
353 354 355 356
#### transition

<!-- VUEJSON.transition.description -->

357
<!-- VUEJSON.transition.attribute -->
D
DCloud_LXH 已提交
358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373

<!-- VUEJSON.transition.event -->

<!-- VUEJSON.transition.example -->

<!-- VUEJSON.transition.compatibility -->

<!-- VUEJSON.transition.children -->

<!-- VUEJSON.transition.reference -->


#### transition-group

<!-- VUEJSON.transition-group.description -->

374
<!-- VUEJSON.transition-group.attribute -->
D
DCloud_LXH 已提交
375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390

<!-- VUEJSON.transition-group.event -->

<!-- VUEJSON.transition-group.example -->

<!-- VUEJSON.transition-group.compatibility -->

<!-- VUEJSON.transition-group.children -->

<!-- VUEJSON.transition-group.reference -->


#### teleport

<!-- VUEJSON.teleport.description -->

391
<!-- VUEJSON.teleport.attribute -->
D
DCloud_LXH 已提交
392

DCloud-WZF's avatar
DCloud-WZF 已提交
393 394 395
**注意:**
- App-Android 平台暂不支持动态修改 `to` 属性。

D
DCloud_LXH 已提交
396 397 398 399 400 401 402 403 404 405
<!-- VUEJSON.teleport.event -->

<!-- VUEJSON.teleport.example -->

<!-- VUEJSON.teleport.compatibility -->

<!-- VUEJSON.teleport.children -->

<!-- VUEJSON.teleport.reference -->

D
DCloud_LXH 已提交
406
### 特殊 Attributes @special-attributes
D
DCloud_LXH 已提交
407 408

<!-- VUEJSON.special_attributes.compatibility -->
D
DCloud_LXH 已提交
409
<!-- VUEJSON.special_attributes.example -->
D
DCloud_LXH 已提交
410

D
DCloud_LXH 已提交
411
### 生命周期选项 @lifecycle-options
D
DCloud_LXH 已提交
412 413

<!-- VUEJSON.options_lifecycle.compatibility -->
D
DCloud_LXH 已提交
414
<!-- VUEJSON.options_lifecycle.example -->
D
DCloud_LXH 已提交
415

416 417 418 419
#### mounted、unmounted 使用注意事项

目前 mounted、unmounted 可以保证当前数据已经同步到 DOM,但是由于排版和渲染是异步的的,所以 mounted、unmounted 不能保证 DOM 排版以及渲染完毕。如果需要获取排版后的节点信息推荐使用 [uni.createSelectorQuery](../api/nodes-info.md) 不推荐直接使用 [Element](../dom/element.md) 对象。在修改 DOM 后,立刻使用 [Element](../dom/element.md) 对象的同步接口获取 DOM 状态可能获取到的是排版之前的,而 [uni.createSelectorQuery](../api/nodes-info.md) 可以保障获取到的节点信息是排版之后的。

D
DCloud_LXH 已提交
420 421
## 插件

D
DCloud_LXH 已提交
422
暂不支持vue插件,比如pinia、vuex、i18n、router。简单的状态管理可以参考文档[全局变量和状态管理](../tutorial/store.md)
D
DCloud_LXH 已提交
423

424
## 选项式 API兼容性 @options-api-compatibility
D
DCloud_LXH 已提交
425 426 427

### 状态选项

428
<!-- VUEJSON.options_state.compatibility -->
429
**注意:**
430
- `watch immediate` 第一次调用时,App-Android 平台旧值为初始值,web 平台为 null。
D
DCloud_LXH 已提交
431

D
DCloud_LXH 已提交
432
<!-- VUEJSON.options_state.example -->
D
DCloud_LXH 已提交
433
### 渲染选项 @rendering-options
D
DCloud_LXH 已提交
434 435 436


<!-- VUEJSON.options_rendering.compatibility -->
D
DCloud_LXH 已提交
437
<!-- VUEJSON.options_rendering.example -->
D
DCloud_LXH 已提交
438

D
DCloud_LXH 已提交
439
### 组合选项 @composition-options
D
DCloud_LXH 已提交
440 441 442


<!-- VUEJSON.options_composition.compatibility -->
D
DCloud_LXH 已提交
443
<!-- VUEJSON.options_composition.example -->
D
DCloud_LXH 已提交
444 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 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499

**注意:**
- **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

D
DCloud_LXH 已提交
500 501 502 503
### 其他杂项


<!-- VUEJSON.options_misc.compatibility -->
D
DCloud_LXH 已提交
504
<!-- VUEJSON.options_misc.example -->
D
DCloud_LXH 已提交
505
### 组件实例 @component-instance
D
DCloud_LXH 已提交
506 507 508


<!-- VUEJSON.component_instance.compatibility -->
D
DCloud_LXH 已提交
509
<!-- VUEJSON.component_instance.example -->
D
DCloud_LXH 已提交
510

Q
qiang 已提交
511 512 513 514
#### $nextTick 使用注意事项

目前 $nextTick 可以保证当前数据已经同步到 DOM,但是由于排版和渲染是异步的的,所以 $nextTick 不能保证 DOM 排版以及渲染完毕。如果需要获取排版后的节点信息推荐使用 [uni.createSelectorQuery](../api/nodes-info.md) 不推荐直接使用 [Element](../dom/element.md) 对象。在修改 DOM 后,立刻使用 [Element](../dom/element.md) 对象的同步接口获取 DOM 状态可能获取到的是排版之前的,而 [uni.createSelectorQuery](../api/nodes-info.md) 可以保障获取到的节点信息是排版之后的。

雪洛's avatar
雪洛 已提交
515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538
#### $data 使用注意事项

data内$开头的属性不可直接使用`this.$xxx`访问,需要使用`this.$data['$xxx']`,这是vue的规范。目前安卓端可以使用this.$xxx访问是Bug而非特性,请勿使用此特性。

示例

```vue
<template>
  <view></view>
</template>
<script>
export default {
  data() {
    return {
      $a: 1
    }
  },
  onReady() {
    console.log(this.$data['$a'] as number) // 1
  }
}
</script>
```

D
DCloud_LXH 已提交
539 540 541 542 543 544
## 进阶 API兼容性

### 渲染函数


<!-- VUEJSON.render_function.compatibility -->
D
DCloud_LXH 已提交
545 546
<!-- VUEJSON.render_function.example -->

D
DCloud_LXH 已提交
547 548 549 550 551 552
## 单文件组件兼容性

### \<script setup>

<!-- VUEJSON.single_file_component_script.compatibility -->

D
DCloud_LXH 已提交
553 554
<!-- VUEJSON.single_file_component_script.example -->

555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642
**注意:**
- `defineProps` 仅支持数组字面量、对象字面量定义(等同于 `options` 中的 `props`规则)及使用纯类型参数的方式来声明。
```ts
// 数组字面量
defineProps(['str', 'num', 'bool', 'arr', 'obj', 'fn'])

// 对象字面量
defineProps({
  str: String,
  num: Number,
  bool: {
    type: Boolean,
    default: true
  },
  arr: {
    type: Array as PropType<string[]>,
    default: () : string[] => [] as string[]
  },
  obj: {
    type: Object as PropType<UTSJSONObject>,
    default: () : UTSJSONObject => ({ a: 1 })
  },
  fn: {
    type: Function as PropType<() => string>,
    default: () : string => ''
  }
})

// 纯类型参数
defineProps<{
  str : String,
  num : Number,
  bool : Boolean,
  arr : PropType<string[]>,
  obj : PropType<UTSJSONObject>,
  fn : PropType<() => string>
}>()
```
- `defineEmits` 仅支持数组字面量和纯类型参数的方式来声明。
```ts
// 数组字面量
const emit = defineEmits(['change'])

// 纯类型参数
const emit = defineEmits<{
  (e : 'change', id : number) : void
}>()
const emit = defineEmits<{
  // 具名元组语法
  change : [id: number]
}>()

```
- `defineOptions` 仅支持对象字面量方式定义。
```ts
defineOptions({
  data() {
    return {
      count: 0,
      price: 10,
      total: 0
    }
  },
  computed: {
    doubleCount() : number {
      return this.count * 2
    },
  },
  watch: {
    count() {
      this.total = this.price * this.count
    },
  },
  methods: {
    increment() {
      this.count++
    }
  }
})
```
- `defineExpose` 仅支持对象字面量方式定义,导出的变量或方法,必须是 `setup` 中定义的,暂不支持外部定义。
```ts
<script setup>
  const str = 'str'
  const num = ref(0)
  const increment = () => {
    num.value++
  }
D
DCloud_LXH 已提交
643

644 645 646 647 648 649 650
  defineExpose({
    str,
    num,
    increment
  })
</script>
```
D
DCloud_LXH 已提交
651

雪洛's avatar
雪洛 已提交
652 653 654 655 656 657 658 659 660 661 662 663 664 665 666
## 其他vue特性

### 递归组件

实现递归组件时不要使用组件import自身的写法,直接在模板内使用组件名即可。

```vue
// component-a.uvue
<template>
  <view>
    <text>component-a::{{text}}</text>
    <component-a v-if="!end" :text="text" :limit="limit-1"></component-a>
  </view>
</template>

667
<script>
雪洛's avatar
雪洛 已提交
668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689
  // import componentA from './component-a' // 错误用法
  export default {
    name: "component-a",
    props: {
      text: {
        type: String,
        default: ''
      },
      limit: {
        type: Number,
        default: 2
      }
    },
    computed: {
      end() : boolean {
        return this.limit <= 0
      }
    }
  }
</script>
```

D
DCloud_LXH 已提交
690 691 692 693
## 其他示例

- [嵌套组件通讯](https://gitcode.net/dcloud/hello-uvue/-/tree/master/pages/examples/nested-component-communication)
- [自定义组件中使用 class 定制另一个自定义组件根节点样式](https://gitcode.net/dcloud/hello-uvue/-/tree/master/pages/examples/set-custom-child-component-root-node-class)
D
DCloud_LXH 已提交
694 695

<!-- ## Bug & Tips@tips -->