1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
<script setup lang="ts"> definePageMeta({ layout: 'editor', }); </script> <template> <div id="title"> <h1>Config</h1> </div> </template> <style lang="scss" scoped> #title { text-align: center; } </style>