扩展 element Plug card
增加全屏,折叠操作项
核心代码
<template>
<div class="cc-card-component">
<el-card v-if="state.isShow" :class="state.class" :bodyStyle="bodyStyle" :shadow="props.shadow">
<template #header v-if="props.title">
<slot name="leftIcon"></slot>
<span>{
{ props.title }}</span>
<div class="component-header-icon">
<template v-if="props.showFullScreen">
<i v-if="state.isFullscreen" @click="toggleFullscreen" class="iconfont icon--fullscreen-exit"></i>
<i v-else @click="toggleFullscreen" class="iconfont icon--fullscreen"></i>
</template>
<i v-if="props.showClose" @clic