Files
sk_fems_ems/components/common/PageTitle.vue
Le Quang Cuong/(Le Quang Cuong)/현장대리인/SK dd559629ab dev-manhph1-screen18-19-21-28
2025-07-25 18:11:31 +09:00

28 lines
452 B
Vue

<template>
<h1 class="h1-title">
<v-avatar size="12" :style="{ backgroundColor: 'currentColor' }"></v-avatar>
{{ text ? text : menuNm}}
</h1>
</template>
<script>
import { mapState } from 'vuex';
export default {
name: "PageTitle",
props: {
text: {
type: String,
required: false,
},
},
computed: {
...mapState({
menuNm: state => state.activeMenuInfo.menuNm,
}),
}
};
</script>
<style scoped></style>