15 lines
258 B
Vue
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>
|