modal.vue
643 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<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>