|
1 | 1 | <template>
|
2 | 2 | <div>
|
3 |
| - <demo /> |
| 3 | + <a-affix class="red"></a-affix> |
| 4 | + <a-alert class="red"></a-alert> |
| 5 | + <a-anchor class="red"> |
| 6 | + <a-anchor-link class="red" href="#components-anchor-demo-basic" title="Basic demo" /> |
| 7 | + </a-anchor> |
| 8 | + <a-auto-complete :dataSource="[]" class="red"></a-auto-complete> |
| 9 | + <a-avatar class="red"></a-avatar> |
| 10 | + <a-back-top class="red">jjj</a-back-top> |
| 11 | + <a-badge class="red"></a-badge> |
| 12 | + <a-breadcrumb class="red"> |
| 13 | + <a-breadcrumb-item class="red">Home</a-breadcrumb-item> |
| 14 | + </a-breadcrumb> |
| 15 | + <a-button class="red"></a-button> |
| 16 | + <a-calendar class="red"></a-calendar> |
| 17 | + <a-card class="red"></a-card> |
| 18 | + <a-carousel class="red"> |
| 19 | + <div> |
| 20 | + <h3>1</h3> |
| 21 | + </div> |
| 22 | + </a-carousel> |
| 23 | + <a-checkbox class="red">Checkbox</a-checkbox> |
| 24 | + <a-checkbox-group class="red"></a-checkbox-group> |
| 25 | + <a-collapse class="red"> |
| 26 | + <a-collapse-panel class="red" key="1" header="This is panel header 1"> |
| 27 | + <p>{{ text }}</p> |
| 28 | + </a-collapse-panel> |
| 29 | + <a-collapse-panel key="2" header="This is panel header 2" :disabled="false"> |
| 30 | + <p>{{ text }}</p> |
| 31 | + </a-collapse-panel> |
| 32 | + <a-collapse-panel key="3" header="This is panel header 3" disabled> |
| 33 | + <p>{{ text }}</p> |
| 34 | + </a-collapse-panel> |
| 35 | + </a-collapse> |
| 36 | + <a-date-picker class="red"></a-date-picker> |
| 37 | + <br /> |
| 38 | + <a-month-picker class="red" placeholder="Select month" /> |
| 39 | + <br /> |
| 40 | + <a-range-picker class="red" /> |
| 41 | + <br /> |
| 42 | + <a-week-picker class="red" placeholder="Select week" /> |
| 43 | + |
| 44 | + <a-descriptions title="User Info" class="red"> |
| 45 | + <a-descriptions-item label="Address" class="red" |
| 46 | + >No. 18, Wantang Road, Xihu District, Hangzhou, Zhejiang, China</a-descriptions-item |
| 47 | + > |
| 48 | + </a-descriptions> |
| 49 | + <a-drawer class="red" style="margin-top: 10px"></a-drawer>> |
| 50 | + <a-dropdown class="red"> |
| 51 | + <a>ssss</a> |
| 52 | + </a-dropdown> |
| 53 | + <a-dropdown-button class="red"></a-dropdown-button> |
4 | 54 | </div>
|
5 | 55 | </template>
|
6 |
| -<script> |
7 |
| -import demo from '../antdv-demo/docs/select/demo/custom-dropdown-menu'; |
8 |
| -export default { |
9 |
| - components: { |
10 |
| - demo, |
11 |
| - }, |
12 |
| - data() { |
13 |
| - return { |
14 |
| - visible: true, |
15 |
| - current: ['mail'], |
16 |
| - }; |
17 |
| - }, |
18 |
| -}; |
19 |
| -</script> |
| 56 | +<style scoped> |
| 57 | +.red { |
| 58 | + color: red; |
| 59 | +}</style |
| 60 | +>> |
0 commit comments