Merge branch 'master' of github.com:yutent/doui
commit
5b656a1219
|
@ -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>
|
||||||
|
|
Reference in New Issue