- 85 个 uView props.js 的中文注释由 GBK 乱码还原为 UTF-8 并去除 BOM - uview-ui/index.js 修复 2 行注释乱码 - 各文件头部 uview-init 兜底 import 保留,功能改动不变
47 lines
1.0 KiB
JavaScript
47 lines
1.0 KiB
JavaScript
import '@/common/uview-init.js'
|
|
export default {
|
|
props: {
|
|
// #ifdef APP-PLUS-NVUE
|
|
bgColor: String,
|
|
// #endif
|
|
content: String,
|
|
copyLink: {
|
|
type: Boolean,
|
|
default: uni.$u.props.parse.copyLink
|
|
},
|
|
domain: String,
|
|
errorImg: {
|
|
type: String,
|
|
default: uni.$u.props.parse.errorImg
|
|
},
|
|
lazyLoad: {
|
|
type: Boolean,
|
|
default: uni.$u.props.parse.lazyLoad
|
|
},
|
|
loadingImg: {
|
|
type: String,
|
|
default: uni.$u.props.parse.loadingImg
|
|
},
|
|
pauseVideo: {
|
|
type: Boolean,
|
|
default: uni.$u.props.parse.pauseVideo
|
|
},
|
|
previewImg: {
|
|
type: Boolean,
|
|
default: uni.$u.props.parse.previewImg
|
|
},
|
|
scrollTable: Boolean,
|
|
selectable: Boolean,
|
|
setTitle: {
|
|
type: Boolean,
|
|
default: uni.$u.props.parse.setTitle
|
|
},
|
|
showImgMenu: {
|
|
type: Boolean,
|
|
default: uni.$u.props.parse.showImgMenu
|
|
},
|
|
tagStyle: Object,
|
|
useAnchor: null
|
|
}
|
|
}
|