sk_fems_ui commit

This commit is contained in:
unknown
2025-07-12 15:13:46 +09:00
commit ffdf5ccb66
380 changed files with 137913 additions and 0 deletions

View File

@ -0,0 +1,32 @@
<template>
<div class="d-flex flex-row align-center">
<div
:style="{ width: labelWidth ? labelWidth + 'px' : null }"
:class="!labelWidth ? 'mr-4' : null"
>
<template v-if="label">
<v-icon x-small :color="'primary'" class="mr-2"
>mdi-record-circle</v-icon
>
<label style="font-size: 0.875rem;">{{ label }}</label>
</template>
</div>
<slot />
</div>
</template>
<script>
export default {
name: 'SdLabelBlock',
props: {
label: {
type: String,
},
labelWidth: {
type: Number,
},
},
};
</script>
<style scoped></style>