feat: refactor layouts and login components

This commit is contained in:
skytek_xinliang
2026-03-30 15:04:27 +08:00
parent f7413111c0
commit 79b20ded3b
21 changed files with 159 additions and 210 deletions
+14
View File
@@ -0,0 +1,14 @@
<template>
<div class="d-flex align-center">
<span class="text-h5 font-weight-bold text-primary">{{ title }}</span>
</div>
</template>
<script setup lang="ts">
defineProps({
title: {
type: String,
default: 'Login PageS',
},
})
</script>