WIP создал элемент long list

This commit is contained in:
dderbentsov
2023-01-02 02:14:10 +03:00
parent 72adfb67a0
commit 722d1ac887
4 changed files with 126 additions and 17 deletions

View File

@@ -0,0 +1,14 @@
<template lang="pug">
.flex.flex-col
.label {{ label }}
slot
</template>
<script>
export default {
name: "BaseInputContainer",
props: {
label: String,
},
};
</script>