Blame view

uni_modules/uview-plus/components/u-parse/props.js 1.21 KB
a2702f6d   刘淇   巡查计划
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
  import { defineMixin } from '../../libs/vue'
  import defProps from '../../libs/config/props.js'
  export const props = defineMixin({
      props: {
  		containerStyle: {
            type: String,
            default: null
  		},
          content: String,
          copyLink: {
  		  type: Boolean,
  		  default: () => defProps.parse.copyLink
          },
          domain: String,
          errorImg: {
  		  type: String,
  		  default: () => defProps.parse.errorImg
          },
          lazyLoad: {
  		  type: Boolean,
  		  default: () => defProps.parse.lazyLoad
          },
          loadingImg: {
  		  type: String,
  		  default: () => defProps.parse.loadingImg
          },
          pauseVideo: {
  		  type: Boolean,
  		  default: () => defProps.parse.pauseVideo
          },
          previewImg: {
  		  type: Boolean,
  		  default: () => defProps.parse.previewImg
          },
          scrollTable: Boolean,
          selectable: Boolean,
          setTitle: {
  		  type: Boolean,
  		  default: () => defProps.parse.setTitle
          },
          showImgMenu: {
  		  type: Boolean,
  		  default: () => defProps.parse.showImgMenu
          },
          tagStyle: {
  		  type: Object,
  		  default: () => {}
          },
          useAnchor: {
            type: Boolean,
            default: null
  		}
  	}
  }