whitespace.vue 329 Bytes
Newer Older
sin's avatar
sin committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
<template>
    <div :style="style"></div>
</template>

<script>
export default {
    name: 'whitespace',
    props: {
        data: Object,
    },
    computed: {
        style() {
            return {
                height: (this.data.height==undefined?'30':this.data.height)+"px",
            };
        }
    }
};
</script>