mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-02 11:17:46 +08:00
c2ecb3a773
- Add more cases for running ssr tests
36 lines
738 B
Vue
36 lines
738 B
Vue
<template>
|
|
<div>
|
|
<el-button @click="show = !show">Click Me</el-button>
|
|
|
|
<div style="margin-top: 20px; height: 200px">
|
|
<el-collapse-transition>
|
|
<div v-show="show">
|
|
<div class="transition-box">el-collapse-transition</div>
|
|
<div class="transition-box">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>
|
|
.transition-box {
|
|
margin-bottom: 10px;
|
|
width: 200px;
|
|
height: 100px;
|
|
border-radius: 4px;
|
|
background-color: #409eff;
|
|
text-align: center;
|
|
color: #fff;
|
|
padding: 40px 20px;
|
|
box-sizing: border-box;
|
|
margin-right: 20px;
|
|
}
|
|
</style>
|