Files
skt-vuetify-templates/src/components/login/LoginBrand.vue
T
2026-03-30 15:04:27 +08:00

15 lines
258 B
Vue

<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>