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: {
|
||||
// 到顶部的距离
|
||||
// 鍒伴《閮ㄧ殑璺濈
|
||||
top: {
|
||||
type: [String, Number],
|
||||
default: uni.$u.props.notify.top
|
||||
},
|
||||
// 是否展示组件
|
||||
// 鏄惁灞曠ず缁勪欢
|
||||
// show: {
|
||||
// type: Boolean,
|
||||
// default: uni.$u.props.notify.show
|
||||
// },
|
||||
// type主题,primary,success,warning,error
|
||||
// type涓婚锛宲rimary锛宻uccess锛寃arning锛宔rror
|
||||
type: {
|
||||
type: String,
|
||||
default: uni.$u.props.notify.type
|
||||
},
|
||||
// 字体颜色
|
||||
// 瀛椾綋棰滆壊
|
||||
color: {
|
||||
type: String,
|
||||
default: uni.$u.props.notify.color
|
||||
},
|
||||
// 背景颜色
|
||||
// 鑳屾櫙棰滆壊
|
||||
bgColor: {
|
||||
type: String,
|
||||
default: uni.$u.props.notify.bgColor
|
||||
},
|
||||
// 展示的文字内容
|
||||
// 灞曠ず鐨勬枃瀛楀唴瀹?
|
||||
message: {
|
||||
type: String,
|
||||
default: uni.$u.props.notify.message
|
||||
},
|
||||
// 展示时长,为0时不消失,单位ms
|
||||
// 灞曠ず鏃堕暱锛屼负0鏃朵笉娑堝け锛屽崟浣峬s
|
||||
duration: {
|
||||
type: [String, Number],
|
||||
default: uni.$u.props.notify.duration
|
||||
},
|
||||
// 字体大小
|
||||
// 瀛椾綋澶у皬
|
||||
fontSize: {
|
||||
type: [String, Number],
|
||||
default: uni.$u.props.notify.fontSize
|
||||
},
|
||||
// 是否留出顶部安全距离(状态栏高度)
|
||||
// 鏄惁鐣欏嚭椤堕儴瀹夊叏璺濈锛堢姸鎬佹爮楂樺害锛?
|
||||
safeAreaInsetTop: {
|
||||
type: Boolean,
|
||||
default: uni.$u.props.notify.safeAreaInsetTop
|
||||
|
||||
Reference in New Issue
Block a user