element-plus/play/app.example
2021-12-04 11:20:06 +08:00

38 lines
657 B
Plaintext

<template>
<div class="play-container">
<el-icon color="#409EFC">
<check-icon />
</el-icon>
<el-icon>
<menu-icon />
</el-icon>
<el-button>test</el-button>
<div v-loading="true"></div>
</div>
</template>
<script setup lang="ts">
import { Check as CheckIcon, Menu as MenuIcon } from '@element-plus/icons-vue'
// code here
</script>
<style lang="scss">
html,
body {
width: 100vw;
height: 100vh;
margin: 0;
#play {
height: 100%;
width: 100%;
.play-container {
height: 100%;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
}
}
}
</style>