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
old
宇天 2020-05-17 23:27:46 +08:00
parent c0d90cebd3
commit 098709128c
1 changed files with 14 additions and 5 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) {
@ -17,6 +18,10 @@
::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,12 +34,16 @@ export default class Tr {
/* render */ /* render */
} }
get scrollLeft() { // get scrollLeft() {
return 0 // return 0
} // }
set scrollLeft(v) { // set scrollLeft(v) {
return v // return v
// }
mounted() {
// log(this.root)
} }
} }
</script> </script>