2021-12-30 12:47:48 +00:00
|
|
|
<template>
|
|
|
|
<div class="terlnhxf _formBlock">
|
|
|
|
<slot></slot>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
const props = withDefaults(defineProps<{
|
2022-06-29 07:07:38 +00:00
|
|
|
minWidth?: number;
|
2021-12-30 12:47:48 +00:00
|
|
|
}>(), {
|
2022-06-29 07:07:38 +00:00
|
|
|
minWidth: 210,
|
2021-12-30 12:47:48 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
const minWidth = props.minWidth + 'px';
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.terlnhxf {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(auto-fill, minmax(v-bind('minWidth'), 1fr));
|
|
|
|
grid-gap: 12px;
|
|
|
|
|
|
|
|
> ::v-deep(*) {
|
|
|
|
margin: 0 !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|