-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
42 changed files
with
238 additions
and
264 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -28,6 +28,7 @@ export default { | |
} | ||
&>.content{ | ||
padding: 20px 0; | ||
overflow: auto; | ||
} | ||
} | ||
</style> |
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 |
---|---|---|
|
@@ -21,4 +21,4 @@ | |
<svg class="icon"><use xlink:href="#icon_caret-down"></use></svg> | ||
</button> | ||
</div> | ||
</template> | ||
</template> |
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 |
---|---|---|
|
@@ -31,4 +31,4 @@ | |
</button> | ||
</span> | ||
</div> | ||
</template> | ||
</template> |
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,36 +1,24 @@ | ||
<template> | ||
<div> | ||
<div class="dao-checkbox-group"> | ||
<div class="dao-checkbox"> | ||
<label> | ||
<input type="checkbox" checked> | ||
option 1 | ||
</label> | ||
</div> | ||
<div class="dao-checkbox"> | ||
<label> | ||
<input type="checkbox"> | ||
option 2 | ||
</label> | ||
</div> | ||
<div class="dao-checkbox disabled"> | ||
<label> | ||
<input type="checkbox" checked disabled> | ||
disable option | ||
</label> | ||
</div> | ||
<div class="dao-checkbox disabled"> | ||
<label> | ||
<input type="checkbox" disabled> | ||
disable option | ||
</label> | ||
</div> | ||
<div class="dao-checkbox-group"> | ||
<div class="dao-checkbox"> | ||
<label> | ||
<input type="checkbox" checked>option 1 | ||
</label> | ||
</div> | ||
<div class="dao-checkbox"> | ||
<label> | ||
<input type="checkbox">option 2 | ||
</label> | ||
</div> | ||
<div class="dao-checkbox disabled"> | ||
<label> | ||
<input type="checkbox" checked disabled>disable option | ||
</label> | ||
</div> | ||
<div class="dao-checkbox disabled"> | ||
<label> | ||
<input type="checkbox" disabled>disable option | ||
</label> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
name: 'Demo1', | ||
} | ||
</script> | ||
</template> |
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,35 +1,24 @@ | ||
<template> | ||
<div> | ||
<div class="dao-checkbox-group checkbox-inline"> | ||
<div class="dao-checkbox"> | ||
<label> | ||
<input type="checkbox" checked> | ||
option 1 | ||
</label> | ||
</div> | ||
<div class="dao-checkbox"> | ||
<label> | ||
<input type="checkbox"> | ||
option 2 | ||
</label> | ||
</div> | ||
<div class="dao-checkbox disabled"> | ||
<label> | ||
<input type="checkbox" checked disabled> | ||
disable option | ||
</label> | ||
</div> | ||
<div class="dao-checkbox disabled"> | ||
<label> | ||
<input type="checkbox" disabled> | ||
disable option | ||
</label> | ||
</div> | ||
<div class="dao-checkbox-group checkbox-inline"> | ||
<div class="dao-checkbox"> | ||
<label> | ||
<input type="checkbox" checked>option 1 | ||
</label> | ||
</div> | ||
<div class="dao-checkbox"> | ||
<label> | ||
<input type="checkbox">option 2 | ||
</label> | ||
</div> | ||
<div class="dao-checkbox disabled"> | ||
<label> | ||
<input type="checkbox" checked disabled>disable option | ||
</label> | ||
</div> | ||
<div class="dao-checkbox disabled"> | ||
<label> | ||
<input type="checkbox" disabled> disable option | ||
</label> | ||
</div> | ||
</div> | ||
</template> | ||
<script> | ||
export default { | ||
name: 'Demo2', | ||
}; | ||
</script> | ||
</template> |
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 |
---|---|---|
|
@@ -15,4 +15,4 @@ | |
}; | ||
}, | ||
}; | ||
</script> | ||
</script> |
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 |
---|---|---|
|
@@ -13,4 +13,4 @@ | |
<span>错误</span> | ||
<dao-progress type="error"></dao-progress> | ||
</div> | ||
</template> | ||
</template> |
Oops, something went wrong.