modal.vue 643 Bytes
<template>
    <div class="modal">
        <div class="modal-label">
            <slot name="label"></slot>
        </div>
        <div class="cont">
            <slot name="cont"></slot>
        </div>
    </div>
</template>

<script>
export default {
    name: 'modal'
}
</script>

<style lang="scss" scoped>
.modal {
    width: 100%;
    margin: 0 auto;

    .modal-label {
        background: #fff;
        border-radius: 5px 5px 0 0;
        height: 52px;
        line-height: 52px;
        padding: 0 20px;
        border-bottom: 1px solid #EAEBEB;
        font-size: 16px;
    }

    .cont {
        background: #fff;
    }
}
</style>