update
parent
c0d90cebd3
commit
098709128c
|
@ -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>
|
||||||
|
|
Reference in New Issue