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,30 +1,31 @@
|
||||
import '@/common/uview-init.js'
|
||||
export default {
|
||||
props: {
|
||||
color: {
|
||||
type: String,
|
||||
default: uni.$u.props.line.color
|
||||
},
|
||||
// 长度,竖向时表现为高度,横向时表现为长度,可以为百分比,带px单位的值等
|
||||
// 闀垮害锛岀珫鍚戞椂琛ㄧ幇涓洪珮搴︼紝妯悜鏃惰〃鐜颁负闀垮害锛屽彲浠ヤ负鐧惧垎姣旓紝甯x鍗曚綅鐨勫€肩瓑
|
||||
length: {
|
||||
type: [String, Number],
|
||||
default: uni.$u.props.line.length
|
||||
},
|
||||
// 线条方向,col-竖向,row-横向
|
||||
// 绾挎潯鏂瑰悜锛宑ol-绔栧悜锛宺ow-妯悜
|
||||
direction: {
|
||||
type: String,
|
||||
default: uni.$u.props.line.direction
|
||||
},
|
||||
// 是否显示细边框
|
||||
// 鏄惁鏄剧ず缁嗚竟妗?
|
||||
hairline: {
|
||||
type: Boolean,
|
||||
default: uni.$u.props.line.hairline
|
||||
},
|
||||
// 线条与上下左右元素的间距,字符串形式,如"30px"、"20px 30px"
|
||||
// 绾挎潯涓庝笂涓嬪乏鍙冲厓绱犵殑闂磋窛锛屽瓧绗︿覆褰㈠紡锛屽"30px"銆?20px 30px"
|
||||
margin: {
|
||||
type: [String, Number],
|
||||
default: uni.$u.props.line.margin
|
||||
},
|
||||
// 是否虚线,true-虚线,false-实线
|
||||
// 鏄惁铏氱嚎锛宼rue-铏氱嚎锛宖alse-瀹炵嚎
|
||||
dashed: {
|
||||
type: Boolean,
|
||||
default: uni.$u.props.line.dashed
|
||||
|
||||
Reference in New Issue
Block a user