未验证 提交 f6c61873 编写于 作者: F fasttian 提交者: Gitee

update docs/migration-to-vue3.md.

上级 a9d496da
...@@ -290,18 +290,11 @@ ...@@ -290,18 +290,11 @@
- 只能在 `<script setup>` 单文件语法糖或 `setup()` 方法中使用生命周期钩子,以 A 页面跳转 B 页面传递参数为例: - 只能在 `<script setup>` 单文件语法糖或 `setup()` 方法中使用生命周期钩子,以 A 页面跳转 B 页面传递参数为例:
```js ```js
// 从 A 页面跳转 B 页面时传递参数 ?id=1&name=uniapp // 从 A 页面跳转 B 页面时传递参数 ?id=1&name=uniapp,xxx 为跳转的页面路径
<script setup> //uni.navigateTo({
import { onMounted } from 'vue' // url: 'xxx?id=1&name=uniapp'
onMounted(() => { //})
uni.navigateTo({
url: 'xxx?id=1&name=uniapp' // xxx 为跳转的页面路径
})
})
</script>
```
```js
// 方式一:在 B 页面 <script setup> 中 // 方式一:在 B 页面 <script setup> 中
<script setup> <script setup>
import { import {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册