Files
skt-vuetify-templates/src/components/login/LoginHeader.vue
T
skytek_xinliang 918da2f79e fix: WCAG fastpass
2026-03-31 09:57:28 +08:00

25 lines
557 B
Vue

<template>
<div class="login-header-wrapper">
<h2 class="text-h5 text-primary font-weight-bold mb-2">{{ props.welcomeText }}</h2>
<p class="text-subtitle-1 text-grey-darken-2">{{ props.welcomeDescription }}</p>
</div>
</template>
<script setup lang="ts">
const props = defineProps({
welcomeText: {
type: String,
default: '歡迎回來 👋🏻',
},
welcomeDescription: {
type: String,
default: '請輸入您的帳號密碼進行登入',
},
})
</script>
<style scoped>
.login-header-wrapper {
height: 140px;
}
</style>