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
<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 #f82caa; |
|
text-align: center; |
|
font-size: 20px; |
|
line-height: 40px; |
|
font-weight: 700; |
|
color: #f82caa; |
|
} |
|
</style> |