blob: 4dfc67955d03f8c19afa4ba65559cc7db942c38e (
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>
|