21 lines
313 B
Vue
21 lines
313 B
Vue
<template>
|
|
<h1 class="h1-title">
|
|
<v-avatar size="12" :style="{ backgroundColor: 'currentColor' }"></v-avatar>
|
|
{{ text }}
|
|
</h1>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "PageTitle",
|
|
props: {
|
|
text: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style scoped></style>
|