15 lines
188 B
Vue
15 lines
188 B
Vue
<template lang="pug">
|
|
.flex.flex-col
|
|
.label {{ label }}
|
|
slot
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "BaseInputContainer",
|
|
props: {
|
|
label: String,
|
|
},
|
|
};
|
|
</script>
|