66 lines
1,019 B
Vue
66 lines
1,019 B
Vue
|
<template>
|
||
|
<div class="mk-widget-container" :class="{ naked }">
|
||
|
<header v-if="showHeader">
|
||
|
<div class="title"><slot name="header"></slot></div>
|
||
|
<slot name="func"></slot>
|
||
|
</header>
|
||
|
<slot></slot>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import Vue from 'vue';
|
||
|
export default Vue.extend({
|
||
|
props: {
|
||
|
showHeader: {
|
||
|
type: Boolean,
|
||
|
default: true
|
||
|
},
|
||
|
naked: {
|
||
|
type: Boolean,
|
||
|
default: false
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
</script>
|
||
|
|
||
|
<style lang="stylus" scoped>
|
||
|
.mk-widget-container
|
||
|
background #eee
|
||
|
border-radius 8px
|
||
|
box-shadow 0 0 0 1px rgba(0, 0, 0, 0.2)
|
||
|
overflow hidden
|
||
|
|
||
|
&.naked
|
||
|
background transparent !important
|
||
|
border none !important
|
||
|
|
||
|
> header
|
||
|
> .title
|
||
|
margin 0
|
||
|
padding 8px 10px
|
||
|
font-size 15px
|
||
|
font-weight normal
|
||
|
color #465258
|
||
|
background #fff
|
||
|
border-radius 8px 8px 0 0
|
||
|
|
||
|
> [data-fa]
|
||
|
margin-right 6px
|
||
|
|
||
|
&:empty
|
||
|
display none
|
||
|
|
||
|
> button
|
||
|
position absolute
|
||
|
z-index 2
|
||
|
top 0
|
||
|
right 0
|
||
|
padding 0
|
||
|
width 42px
|
||
|
height 100%
|
||
|
font-size 15px
|
||
|
color #465258
|
||
|
|
||
|
</style>
|