10 lines
219 B
Vue
10 lines
219 B
Vue
<script setup lang="ts">
|
|
defineOptions({ name: 'SoybeanAvatar' });
|
|
</script>
|
|
|
|
<template>
|
|
<div class="size-72px flex-center rd-1/2 bg-primary text-24px text-white font-600">CN</div>
|
|
</template>
|
|
|
|
<style scoped></style>
|