mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
* docs: improve examples layout for narrow screens * docs: style related * style: [statistic] use utilities * style: [input] remove deep * style: [transitions] change style * refactor: [date-picker-panel] narrow refactor
34 lines
751 B
Vue
34 lines
751 B
Vue
<template>
|
|
<div>
|
|
<el-button @click="show = !show">Click Me</el-button>
|
|
|
|
<div style="margin-top: 20px; height: 210px">
|
|
<el-collapse-transition>
|
|
<div v-show="show">
|
|
<div class="transition-box">el-collapse-transition</div>
|
|
<div class="transition-box mt-[10px]">el-collapse-transition</div>
|
|
</div>
|
|
</el-collapse-transition>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue'
|
|
|
|
const show = ref(true)
|
|
</script>
|
|
|
|
<style scoped>
|
|
.transition-box {
|
|
width: 200px;
|
|
height: 100px;
|
|
border-radius: var(--el-border-radius-base);
|
|
background-color: var(--el-color-primary);
|
|
text-align: center;
|
|
color: #fff;
|
|
padding: 40px 20px;
|
|
box-sizing: border-box;
|
|
}
|
|
</style>
|