示例:
代码:
<template lang="html">
<div class="container">
<div :style="{height: getTableMaxHeight, 'overflow': 'auto'}">
...
</div>
</div>
</template>
<script>
export default {
computed: {
getTableMaxHeight () {
return this.$store.getters.getContentHeight + 'px'
}
}
}
</script>
<style lang="scss" scoped>
.container {
background-color: rgb(40,44,52);
float: left;
width: 210px;
height: 100%;
border-top:solid 0.5px grey
}
</style>