Blame view

node_modules/bootstrap-vue/src/components/media/package.json 1.82 KB
4cd4fd28   郭伟龙   feat: 初始化项目
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
55
56
57
58
59
60
61
62
63
64
65
{
  "name": "@bootstrap-vue/media",
  "version": "1.0.0",
  "meta": {
    "title": "Media",
    "description": "The media object helps build complex and repetitive components where some media is positioned alongside content that doesn't wrap around said media.",
    "components": [
      {
        "component": "BMedia",
        "props": [
          {
            "prop": "noBody",
            "description": "When set, does not render a 'b-media-body' wrapper around the default slot content"
          },
          {
            "prop": "rightAlign",
            "description": "Render the 'aside' slot on the right. Default is on the left"
          },
          {
            "prop": "verticalAlign",
            "description": "Vertical alignment of the 'aside' slot: 'start' (or 'top'), 'center', or 'end' (or 'bottom')"
          }
        ],
        "slots": [
          {
            "name": "aside",
            "description": "Media aside"
          },
          {
            "name": "default",
            "description": "Content to place in the media element"
          }
        ]
      },
      {
        "component": "BMediaAside",
        "props": [
          {
            "prop": "right",
            "description": "Position the 'aside' on the right. Default is on the left"
          },
          {
            "prop": "verticalAlign",
            "description": "Vertical alignment of the aside: 'start' (or 'top'), 'center', or 'end' (or 'bottom')"
          }
        ],
        "slots": [
          {
            "name": "default",
            "description": "Content to place in the media aside"
          }
        ]
      },
      {
        "component": "BMediaBody",
        "slots": [
          {
            "name": "default",
            "description": "Content to place in the media body"
          }
        ]
      }
    ]
  }
}