Files
t/uni_modules/uview-ui/components/u-tabs/props.js
T
root 99c139d6ce 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)
2026-09-06 19:36:36 +08:00

66 lines
1.9 KiB
JavaScript

import '@/common/uview-init.js'
export default {
props: {
// 婊戝潡鐨勭Щ鍔ㄨ繃娓℃椂闂达紝鍗曚綅ms
duration: {
type: Number,
default: uni.$u.props.tabs.duration
},
// tabs鏍囩鏁扮粍
list: {
type: Array,
default: uni.$u.props.tabs.list
},
// 婊戝潡棰滆壊
lineColor: {
type: String,
default: uni.$u.props.tabs.lineColor
},
// 鑿滃崟閫夋嫨涓椂鐨勬牱寮?
activeStyle: {
type: [String, Object],
default: uni.$u.props.tabs.activeStyle
},
// 鑿滃崟闈為€変腑鏃剁殑鏍峰紡
inactiveStyle: {
type: [String, Object],
default: uni.$u.props.tabs.inactiveStyle
},
// 婊戝潡闀垮害
lineWidth: {
type: [String, Number],
default: uni.$u.props.tabs.lineWidth
},
// 婊戝潡楂樺害
lineHeight: {
type: [String, Number],
default: uni.$u.props.tabs.lineHeight
},
// 婊戝潡鑳屾櫙鏄剧ず澶у皬锛屽綋婊戝潡鑳屾櫙璁剧疆涓哄浘鐗囨椂浣跨敤
lineBgSize: {
type: String,
default: uni.$u.props.tabs.lineBgSize
},
// 鑿滃崟item鐨勬牱寮?
itemStyle: {
type: [String, Object],
default: uni.$u.props.tabs.itemStyle
},
// 鑿滃崟鏄惁鍙粴鍔?
scrollable: {
type: Boolean,
default: uni.$u.props.tabs.scrollable
},
// 褰撳墠閫変腑鏍囩鐨勭储寮?
current: {
type: [Number, String],
default: uni.$u.props.tabs.current
},
// 榛樿璇诲彇鐨勯敭鍚?
keyName: {
type: String,
default: uni.$u.props.tabs.keyName
}
}
}