You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
367 B
24 lines
367 B
1 month ago
|
<template>
|
||
|
<div class="main">
|
||
|
i
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script setup>
|
||
|
import { ref, computed, nextTick, watch, onMounted } from "vue"
|
||
|
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<style scoped >
|
||
|
.main{
|
||
|
width: 40px;
|
||
|
height: 40px;
|
||
|
border: 2px solid #0712ca;
|
||
|
text-align: center;
|
||
|
font-size: 20px;
|
||
|
line-height: 40px;
|
||
|
font-weight: 700;
|
||
|
color: #0712ca;
|
||
|
}
|
||
|
</style>
|