19 lines
251 B
Vue
19 lines
251 B
Vue
<template>
|
|
<h2>{{ t('side_menu', label) }}</h2>
|
|
</template>
|
|
|
|
<script setup>
|
|
const { label } = defineProps({
|
|
label: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
})
|
|
</script>
|
|
|
|
<style scoped>
|
|
h2 {
|
|
font-size: 1.3em;
|
|
margin: 0 0 12px 0;
|
|
}
|
|
</style>
|