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,46 +1,47 @@
|
||||
import '@/common/uview-init.js'
|
||||
export default {
|
||||
props: {
|
||||
// tab的数据
|
||||
// tab鐨勬暟鎹?
|
||||
list: {
|
||||
type: Array,
|
||||
default: uni.$u.props.subsection.list
|
||||
},
|
||||
// 当前活动的tab的index
|
||||
// 褰撳墠娲诲姩鐨則ab鐨刬ndex
|
||||
current: {
|
||||
type: [String, Number],
|
||||
default: uni.$u.props.subsection.current
|
||||
},
|
||||
// 激活的颜色
|
||||
// 婵€娲荤殑棰滆壊
|
||||
activeColor: {
|
||||
type: String,
|
||||
default: uni.$u.props.subsection.activeColor
|
||||
},
|
||||
// 未激活的颜色
|
||||
// 鏈縺娲荤殑棰滆壊
|
||||
inactiveColor: {
|
||||
type: String,
|
||||
default: uni.$u.props.subsection.inactiveColor
|
||||
},
|
||||
// 模式选择,mode=button为按钮形式,mode=subsection时为分段模式
|
||||
// 妯″紡閫夋嫨锛宮ode=button涓烘寜閽舰寮忥紝mode=subsection鏃朵负鍒嗘妯″紡
|
||||
mode: {
|
||||
type: String,
|
||||
default: uni.$u.props.subsection.mode
|
||||
},
|
||||
// 字体大小
|
||||
// 瀛椾綋澶у皬
|
||||
fontSize: {
|
||||
type: [String, Number],
|
||||
default: uni.$u.props.subsection.fontSize
|
||||
},
|
||||
// 激活tab的字体是否加粗
|
||||
// 婵€娲籺ab鐨勫瓧浣撴槸鍚﹀姞绮?
|
||||
bold: {
|
||||
type: Boolean,
|
||||
default: uni.$u.props.subsection.bold
|
||||
},
|
||||
// mode = button时,组件背景颜色
|
||||
// mode = button鏃讹紝缁勪欢鑳屾櫙棰滆壊
|
||||
bgColor: {
|
||||
type: String,
|
||||
default: uni.$u.props.subsection.bgColor
|
||||
},
|
||||
// 从list元素对象中读取的键名
|
||||
// 浠巐ist鍏冪礌瀵硅薄涓鍙栫殑閿悕
|
||||
keyName: {
|
||||
type: String,
|
||||
default: uni.$u.props.subsection.keyName
|
||||
|
||||
Reference in New Issue
Block a user