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

Merge branch 'master' of github.com:yutent/doui

old
宇天 2020-06-15 20:10:07 +08:00
commit 5b656a1219
1 changed files with 17 additions and 1 deletions

View File

@ -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>