mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-21 01:02:59 +08:00
079bb11b8c
* chore(project): ignore play file - Remove cached play file * update new way for ignore * better solution
29 lines
456 B
Plaintext
29 lines
456 B
Plaintext
<template>
|
|
<div class="play-container">
|
|
<ElButton> test </ElButton>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ElButton } from '@element-plus/components'
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
html,
|
|
body {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
#play {
|
|
height: 100%;
|
|
width: 100%;
|
|
.play-container {
|
|
height: 100%;
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
}
|
|
}
|
|
</style>
|