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,56 +1,57 @@
|
||||
import '@/common/uview-init.js'
|
||||
export default {
|
||||
props: {
|
||||
// 是否显示组件
|
||||
// 鏄惁鏄剧ず缁勪欢
|
||||
show: {
|
||||
type: Boolean,
|
||||
default: uni.$u.props.loadingIcon.show
|
||||
},
|
||||
// 颜色
|
||||
// 棰滆壊
|
||||
color: {
|
||||
type: String,
|
||||
default: uni.$u.props.loadingIcon.color
|
||||
},
|
||||
// 提示文字颜色
|
||||
// 鎻愮ず鏂囧瓧棰滆壊
|
||||
textColor: {
|
||||
type: String,
|
||||
default: uni.$u.props.loadingIcon.textColor
|
||||
},
|
||||
// 文字和图标是否垂直排列
|
||||
// 鏂囧瓧鍜屽浘鏍囨槸鍚﹀瀭鐩存帓鍒?
|
||||
vertical: {
|
||||
type: Boolean,
|
||||
default: uni.$u.props.loadingIcon.vertical
|
||||
},
|
||||
// 模式选择,circle-圆形,spinner-花朵形,semicircle-半圆形
|
||||
// 妯″紡閫夋嫨锛宑ircle-鍦嗗舰锛宻pinner-鑺辨湹褰紝semicircle-鍗婂渾褰?
|
||||
mode: {
|
||||
type: String,
|
||||
default: uni.$u.props.loadingIcon.mode
|
||||
},
|
||||
// 图标大小,单位默认px
|
||||
// 鍥炬爣澶у皬锛屽崟浣嶉粯璁x
|
||||
size: {
|
||||
type: [String, Number],
|
||||
default: uni.$u.props.loadingIcon.size
|
||||
},
|
||||
// 文字大小
|
||||
// 鏂囧瓧澶у皬
|
||||
textSize: {
|
||||
type: [String, Number],
|
||||
default: uni.$u.props.loadingIcon.textSize
|
||||
},
|
||||
// 文字内容
|
||||
// 鏂囧瓧鍐呭
|
||||
text: {
|
||||
type: [String, Number],
|
||||
default: uni.$u.props.loadingIcon.text
|
||||
},
|
||||
// 动画模式
|
||||
// 鍔ㄧ敾妯″紡
|
||||
timingFunction: {
|
||||
type: String,
|
||||
default: uni.$u.props.loadingIcon.timingFunction
|
||||
},
|
||||
// 动画执行周期时间
|
||||
// 鍔ㄧ敾鎵ц鍛ㄦ湡鏃堕棿
|
||||
duration: {
|
||||
type: [String, Number],
|
||||
default: uni.$u.props.loadingIcon.duration
|
||||
},
|
||||
// mode=circle时的暗边颜色
|
||||
// mode=circle鏃剁殑鏆楄竟棰滆壊
|
||||
inactiveColor: {
|
||||
type: String,
|
||||
default: uni.$u.props.loadingIcon.inactiveColor
|
||||
|
||||
Reference in New Issue
Block a user