initialize settings page

This commit is contained in:
geoffrey45
2022-08-19 19:24:38 +03:00
parent dcd27921ae
commit 44bb30fe9f
19 changed files with 327 additions and 48 deletions
@@ -0,0 +1,9 @@
<template>
<div class="title">{{ text }}</div>
</template>
<script setup lang="ts">
defineProps<{
text: string;
}>();
</script>