Sharkey/packages/frontend/src/components/form/split.vue

28 lines
453 B
Vue
Raw Normal View History

2021-12-30 14:47:48 +02:00
<template>
2023-01-15 01:07:11 +02:00
<div :class="$style.root">
2021-12-30 14:47:48 +02:00
<slot></slot>
</div>
</template>
<script lang="ts" setup>
2023-01-15 01:07:11 +02:00
import { provide } from 'vue';
2021-12-30 14:47:48 +02:00
const props = withDefaults(defineProps<{
2022-06-29 10:07:38 +03:00
minWidth?: number;
2021-12-30 14:47:48 +02:00
}>(), {
2022-06-29 10:07:38 +03:00
minWidth: 210,
2021-12-30 14:47:48 +02:00
});
2023-01-15 01:07:11 +02:00
provide('splited', true);
2021-12-30 14:47:48 +02:00
const minWidth = props.minWidth + 'px';
</script>
2023-01-15 01:07:11 +02:00
<style lang="scss" module>
.root {
2021-12-30 14:47:48 +02:00
display: grid;
grid-template-columns: repeat(auto-fill, minmax(v-bind('minWidth'), 1fr));
grid-gap: 12px;
}
</style>