Fix vue dynamic layout

This commit is contained in:
Matthias 2020-08-25 19:45:35 +02:00
parent 246417ebc2
commit e5e3de5700
3 changed files with 8 additions and 1 deletions

View File

@ -126,4 +126,9 @@ export default class CumProfitChart extends Vue {
} }
</script> </script>
<style scoped></style> <style scoped>
.echarts {
width: 100%;
height: 100%;
}
</style>

View File

@ -3,6 +3,7 @@
class="h-100 w-100" class="h-100 w-100"
:row-height="50" :row-height="50"
:layout="gridLayout" :layout="gridLayout"
:vertical-compact="false"
@layout-updated="layoutUpdatedEvent" @layout-updated="layoutUpdatedEvent"
> >
<GridItem <GridItem

View File

@ -3,6 +3,7 @@
class="h-100 w-100" class="h-100 w-100"
:row-height="50" :row-height="50"
:layout="gridLayout" :layout="gridLayout"
:vertical-compact="false"
@layout-updated="layoutUpdatedEvent" @layout-updated="layoutUpdatedEvent"
> >
<GridItem <GridItem