-
-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: some component not support css scoped
- Loading branch information
1 parent
63e8747
commit 4bdb241
Showing
13 changed files
with
102 additions
and
32 deletions.
There are no files selected for viewing
Submodule antdv-demo
updated
from 38ec9e to 31e7b3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,60 @@ | ||
<template> | ||
<div> | ||
<demo /> | ||
<a-affix class="red"></a-affix> | ||
<a-alert class="red"></a-alert> | ||
<a-anchor class="red"> | ||
<a-anchor-link class="red" href="#components-anchor-demo-basic" title="Basic demo" /> | ||
</a-anchor> | ||
<a-auto-complete :dataSource="[]" class="red"></a-auto-complete> | ||
<a-avatar class="red"></a-avatar> | ||
<a-back-top class="red">jjj</a-back-top> | ||
<a-badge class="red"></a-badge> | ||
<a-breadcrumb class="red"> | ||
<a-breadcrumb-item class="red">Home</a-breadcrumb-item> | ||
</a-breadcrumb> | ||
<a-button class="red"></a-button> | ||
<a-calendar class="red"></a-calendar> | ||
<a-card class="red"></a-card> | ||
<a-carousel class="red"> | ||
<div> | ||
<h3>1</h3> | ||
</div> | ||
</a-carousel> | ||
<a-checkbox class="red">Checkbox</a-checkbox> | ||
<a-checkbox-group class="red"></a-checkbox-group> | ||
<a-collapse class="red"> | ||
<a-collapse-panel class="red" key="1" header="This is panel header 1"> | ||
<p>{{ text }}</p> | ||
</a-collapse-panel> | ||
<a-collapse-panel key="2" header="This is panel header 2" :disabled="false"> | ||
<p>{{ text }}</p> | ||
</a-collapse-panel> | ||
<a-collapse-panel key="3" header="This is panel header 3" disabled> | ||
<p>{{ text }}</p> | ||
</a-collapse-panel> | ||
</a-collapse> | ||
<a-date-picker class="red"></a-date-picker> | ||
<br /> | ||
<a-month-picker class="red" placeholder="Select month" /> | ||
<br /> | ||
<a-range-picker class="red" /> | ||
<br /> | ||
<a-week-picker class="red" placeholder="Select week" /> | ||
|
||
<a-descriptions title="User Info" class="red"> | ||
<a-descriptions-item label="Address" class="red" | ||
>No. 18, Wantang Road, Xihu District, Hangzhou, Zhejiang, China</a-descriptions-item | ||
> | ||
</a-descriptions> | ||
<a-drawer class="red" style="margin-top: 10px"></a-drawer>> | ||
<a-dropdown class="red"> | ||
<a>ssss</a> | ||
</a-dropdown> | ||
<a-dropdown-button class="red"></a-dropdown-button> | ||
</div> | ||
</template> | ||
<script> | ||
import demo from '../antdv-demo/docs/select/demo/custom-dropdown-menu'; | ||
export default { | ||
components: { | ||
demo, | ||
}, | ||
data() { | ||
return { | ||
visible: true, | ||
current: ['mail'], | ||
}; | ||
}, | ||
}; | ||
</script> | ||
<style scoped> | ||
.red { | ||
color: red; | ||
}</style | ||
>> |