TopLeftText.vue 263 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 <script setup lang="ts"></script> <template> <div class="top-left-box"> <span>人间草木</span> </div> </template> <style lang="scss" scoped> .top-left-box { height: 50px; padding: $padding-sm; line-height: 50px; text-align: center; } </style>