|
@@ -33,7 +33,7 @@
|
|
|
|
|
|
<script lang="ts">
|
|
|
import { ElTable } from "element-ui/types/table";
|
|
|
-import { Component, Prop, Ref, Vue } from "vue-property-decorator";
|
|
|
+import { Component, Prop, Ref, Vue, Watch } from "vue-property-decorator";
|
|
|
@Component({
|
|
|
name: "adm-multi-table",
|
|
|
})
|
|
@@ -50,12 +50,12 @@ export default class extends Vue {
|
|
|
console.log(index, row);
|
|
|
}
|
|
|
|
|
|
- // @Watch("headersStage", { immediate: true, deep: true })
|
|
|
- // onCurrentHeaderChange() {
|
|
|
- // this.$nextTick(() => {
|
|
|
- // this.tableDom.doLayout();
|
|
|
- // });
|
|
|
- // }
|
|
|
+ @Watch("headersStage", { immediate: true, deep: true })
|
|
|
+ onCurrentHeaderChange() {
|
|
|
+ this.$nextTick(() => {
|
|
|
+ this.tableDom.doLayout();
|
|
|
+ });
|
|
|
+ }
|
|
|
}
|
|
|
</script>
|
|
|
|