mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-21 01:02:59 +08:00
38 lines
657 B
Plaintext
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>
|