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