mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
12 lines
167 B
Vue
12 lines
167 B
Vue
|
<script setup lang="ts">
|
||
|
defineProps<{
|
||
|
show: boolean
|
||
|
}>()
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<Transition name="el-fade-in">
|
||
|
<div v-if="show" />
|
||
|
</Transition>
|
||
|
</template>
|