27 lines
459 B
Vue
27 lines
459 B
Vue
<template>
|
|
<div class="form-group">
|
|
<label class="col-sm-2 control-label" for="module_tgshop_status">
|
|
{{ label }}
|
|
</label>
|
|
<div class="col-sm-10">
|
|
<slot name="default"></slot>
|
|
<div class="help-block">
|
|
<slot name="help"></slot>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
const props = defineProps({
|
|
label: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
|
|
</style>
|