aboutsummaryrefslogtreecommitdiffstats
path: root/pages/editor/config.vue
blob: 515cac9708d10bb6ab9fc0589cba6075e84491e5 (plain)
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>