mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2026-01-20 20:01:25 +00:00
28 lines
376 B
Vue
28 lines
376 B
Vue
<template>
|
|
<label
|
|
v-show="!!label"
|
|
class="ds-input-label">
|
|
{{ label }}
|
|
</label>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
|
|
/**
|
|
* @version 1.0.0
|
|
* @private
|
|
*/
|
|
export default defineComponent({
|
|
name: 'DsInputLabel',
|
|
|
|
props: {
|
|
label: {
|
|
type: String,
|
|
required: false,
|
|
default: null
|
|
}
|
|
},
|
|
});
|
|
</script>
|