mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 09:20:51 +08:00
d8954f945e
* chore: make eslints work in docs folder * refactor(dev): improve eslint * fix eslint issue Co-authored-by: Kevin <sxzz@sxzz.moe> Co-authored-by: jeremywuuuuu <15975785+JeremyWuuuuu@users.noreply.github.com>
46 lines
1.0 KiB
Vue
46 lines
1.0 KiB
Vue
<script setup lang="ts">
|
|
defineProps({
|
|
file: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
demo: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div class="example-showcase">
|
|
<ClientOnly>
|
|
<component :is="demo" v-if="demo" v-bind="$attrs" />
|
|
</ClientOnly>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
.example-showcase {
|
|
padding: 1rem;
|
|
margin: 0.5px;
|
|
background-color: var(--bg-color);
|
|
&.transparent-enabled {
|
|
background-image: linear-gradient(
|
|
45deg,
|
|
rgb(249, 249, 250) 25%,
|
|
transparent 25%
|
|
),
|
|
linear-gradient(135deg, rgb(249, 249, 250) 25%, transparent 25%),
|
|
linear-gradient(45deg, transparent 75%, rgb(249, 249, 250) 75%),
|
|
linear-gradient(135deg, transparent 75%, rgb(249, 249, 250) 75%);
|
|
background-size: 20px 20px;
|
|
background-position: 0px 0px, 10px 0px, 10px -10px, 0px 10px;
|
|
}
|
|
|
|
@at-root .dark .example-showcase {
|
|
background-image: unset;
|
|
background-color: var(--bg-color-soft);
|
|
}
|
|
}
|
|
</style>
|