fix: Vue2 到 Vue3 迁移兼容修复
- 修复 uni-popup-dialog/uni-data-picker keypress.js 中 $once 在 H5 端报错(改用生命周期钩子清理监听) - main.js 补 $delete globalProperties polyfill(z-paging 自动高度逻辑依赖) - App.vue onLaunch 补设备信息初始化,修复 X-Device-Id 恒为 unknown - 68 处 ::v-deep、/deep/ 旧深度选择器替换为 :deep()(含 login-page.scss) - zetank-personalpage 组件 .sync 修饰符改为 v-model:xxx(Vue3 已移除 .sync) - vite.config.js HBuilderX 路径支持 HBUILDERX_HOME 环境变量覆盖 - 根 package.json 清理 image-grid 插件遗留元数据 - 收录此前未提交的 uView Vue3 兜底补丁(common/uview-init.js 及各组件 props.js)
This commit is contained in:
@@ -1,51 +1,52 @@
|
||||
import '@/common/uview-init.js'
|
||||
export default {
|
||||
props: {
|
||||
// 是否为加载中状态
|
||||
// 鏄惁涓哄姞杞戒腑鐘舵€?
|
||||
loading: {
|
||||
type: Boolean,
|
||||
default: uni.$u.props.switch.loading
|
||||
},
|
||||
// 是否为禁用装填
|
||||
// 鏄惁涓虹鐢ㄨ濉?
|
||||
disabled: {
|
||||
type: Boolean,
|
||||
default: uni.$u.props.switch.disabled
|
||||
},
|
||||
// 开关尺寸,单位px
|
||||
// 寮€鍏冲昂瀵革紝鍗曚綅px
|
||||
size: {
|
||||
type: [String, Number],
|
||||
default: uni.$u.props.switch.size
|
||||
},
|
||||
// 打开时的背景颜色
|
||||
// 鎵撳紑鏃剁殑鑳屾櫙棰滆壊
|
||||
activeColor: {
|
||||
type: String,
|
||||
default: uni.$u.props.switch.activeColor
|
||||
},
|
||||
// 关闭时的背景颜色
|
||||
// 鍏抽棴鏃剁殑鑳屾櫙棰滆壊
|
||||
inactiveColor: {
|
||||
type: String,
|
||||
default: uni.$u.props.switch.inactiveColor
|
||||
},
|
||||
// 通过v-model双向绑定的值
|
||||
// 閫氳繃v-model鍙屽悜缁戝畾鐨勫€?
|
||||
value: {
|
||||
type: [Boolean, String, Number],
|
||||
default: uni.$u.props.switch.value
|
||||
},
|
||||
// switch打开时的值
|
||||
// switch鎵撳紑鏃剁殑鍊?
|
||||
activeValue: {
|
||||
type: [String, Number, Boolean],
|
||||
default: uni.$u.props.switch.activeValue
|
||||
},
|
||||
// switch关闭时的值
|
||||
// switch鍏抽棴鏃剁殑鍊?
|
||||
inactiveValue: {
|
||||
type: [String, Number, Boolean],
|
||||
default: uni.$u.props.switch.inactiveValue
|
||||
},
|
||||
// 是否开启异步变更,开启后需要手动控制输入值
|
||||
// 鏄惁寮€鍚紓姝ュ彉鏇达紝寮€鍚悗闇€瑕佹墜鍔ㄦ帶鍒惰緭鍏ュ€?
|
||||
asyncChange: {
|
||||
type: Boolean,
|
||||
default: uni.$u.props.switch.asyncChange
|
||||
},
|
||||
// 圆点与外边框的距离
|
||||
// 鍦嗙偣涓庡杈规鐨勮窛绂?
|
||||
space: {
|
||||
type: [String, Number],
|
||||
default: uni.$u.props.switch.space
|
||||
|
||||
Reference in New Issue
Block a user