| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <template>
- <div class="card-wrap">
- <div class="header">
- <div class="h-c-wrap">
- <slot name="title"></slot>
- </div>
- </div>
- <div class="content">
- <slot name="content" class="slot"></slot>
- </div>
- </div>
- </template>
- <script>
- export default {
- name: 'CardWrap',
- data() {
- return {}
- },
- watch: {},
- created() {
- },
- methods: {}
- }
- </script>
- <style scoped lang="scss">
- .card-wrap {
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- border: 1px solid teal;
- .header {
- height: 48px;
- width: 80%;
- flex-shrink: 0;
- background-image: url("/static/images/biaoti_short@2x.png");
- background-repeat: no-repeat;
- background-size: auto 34px;
- background-position: left bottom;
- font-size: 24px;
- color: white;
- padding-left: 15%;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- display: flex;
- align-items: center;
- justify-content: center;
- & > .h-c-wrap {
- line-height: 1;
- }
- }
- .content {
- flex-grow: 1;
- width: 100%;
- & > div {
- height: 100%;
- }
- }
- }
- </style>
|