This repository has been archived on 2023-08-30. You can view files and clone it, but cannot push or open issues/pull-requests.
bytedo
/
wcui
Archived
1
0
Fork 0

Merge branch 'master' of github.com:yutent/doui

old
宇天 2020-06-15 20:10:07 +08:00
commit 5b656a1219
1 changed files with 17 additions and 1 deletions

View File

@ -5,6 +5,7 @@
<style lang="scss"> <style lang="scss">
:host { :host {
display: flex; display: flex;
// min-height: 36px;
color: inherit; color: inherit;
} }
:host(:hover) { :host(:hover) {
@ -13,11 +14,14 @@
:host(.thead) ::slotted(wc-td[leaf]) { :host(.thead) ::slotted(wc-td[leaf]) {
border-top: 0; border-top: 0;
// border-bottom: 1px solid nth($cp, 3);
} }
::slotted(wc-td:last-child) { ::slotted(wc-td:last-child) {
border-right: 0; border-right: 0;
} }
:host(.thead) {
overflow-x: hidden;
}
</style> </style>
<script> <script>
@ -29,5 +33,17 @@ export default class Tr {
__init__() { __init__() {
/* render */ /* render */
} }
// get scrollLeft() {
// return 0
// }
// set scrollLeft(v) {
// return v
// }
mounted() {
// log(this.root)
}
} }
</script> </script>