From b2b8eb119ab16163730f31189ddea643e58d6be4 Mon Sep 17 00:00:00 2001 From: DCloud_LXH <283700113@qq.com> Date: Mon, 10 Jul 2023 15:13:04 +0800 Subject: [PATCH] chore: migration-to-vue3 --- docs/component/input.md | 2 +- docs/tutorial/migration-to-vue3.md | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/docs/component/input.md b/docs/component/input.md index df9fd7d54..4ddfac0bf 100644 --- a/docs/component/input.md +++ b/docs/component/input.md @@ -69,7 +69,7 @@ html规范中input不仅是输入框,还有radio、checkbox、时间、日期 |number|数字输入键盘|均支持,App平台、H5平台 3.1.22 以下版本 vue 页面在 iOS 平台显示的键盘包含负数和小数。| |idcard|身份证输入键盘|微信、支付宝、百度、QQ小程序、快手小程序、京东小程序| |digit|带小数点的数字键盘|均支持,App平台、H5平台 vue 页面在 iOS 平台显示的键盘包含负数(原生键盘不支持负号)。| -|tel|电话输入键盘|仅App的nvue页面支持| +|tel|电话输入键盘|| |safe-password|密码安全输入键盘|微信小程序| |nickname|昵称输入键盘|微信小程序| diff --git a/docs/tutorial/migration-to-vue3.md b/docs/tutorial/migration-to-vue3.md index 730fc7ae0..bea375ee5 100644 --- a/docs/tutorial/migration-to-vue3.md +++ b/docs/tutorial/migration-to-vue3.md @@ -495,6 +495,24 @@ App,小程序端源码调试,需要在 vite.config.js 中主动开启 source vue3 出于性能考虑,style 中暂不支持 div、p 等 HTML 标签选择器,推荐使用 class 选择器,[template 中的 HTML 标签仍会进行转换](https://uniapp.dcloud.net.cn/vernacular.html#%E7%BB%84%E4%BB%B6-%E6%A0%87%E7%AD%BE%E7%9A%84%E5%8F%98%E5%8C%96)。 +### 真机调试 + +- vue3 微信开发者工具真机调试页面空白,如[帖子](https://ask.dcloud.net.cn/question/162915) +- vue3 微信小程序真机调试,如[帖子](https://ask.dcloud.net.cn/question/173162) + +均可以通过在 manifest.json 的 `mp-weixin` 中配置 `minified` 为 `true` 来解决 + +```json +{ + "mp-weixin": { + "setting": { + // ...其他配置 + "minified": true + } + } +} +``` + ## vue3 支持的手机版本最低到多少? > vue3 支持的范围是:Android > 4.4(具体因系统 webview 版本而异,原生安卓系统升级过系统 webview 一般 5.0 即可,国产安卓系统未使用 x5 内核时一般需 7.0 以上), ios >= 10 -- GitLab