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">
:host {
display: flex;
// min-height: 36px;
color: inherit;
}
:host(:hover) {
@ -17,6 +18,10 @@
::slotted(wc-td:last-child) {
border-right: 0;
}
:host(.thead) {
overflow-x: hidden;
}
</style>
<script>
@ -29,12 +34,16 @@ export default class Tr {
/* render */
}
get scrollLeft() {
return 0
}
// get scrollLeft() {
// return 0
// }
set scrollLeft(v) {
return v
// set scrollLeft(v) {
// return v
// }
mounted() {
// log(this.root)
}
}
</script>