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

42 lines
611 B
Vue
Raw Normal View History

2021-09-29 18:50:45 +03:00
<template>
<div class="adhpbeou">
<div class="label" @click="focus"><slot name="label"></slot></div>
<div class="content">
<slot></slot>
</div>
<div class="caption"><slot name="caption"></slot></div>
</div>
</template>
2022-09-05 12:51:23 +03:00
<script lang="ts" setup>
import { } from 'vue';
2021-09-29 18:50:45 +03:00
2022-09-05 12:51:23 +03:00
function focus() {
// TODO
}
2021-09-29 18:50:45 +03:00
</script>
<style lang="scss" scoped>
2021-09-29 18:50:45 +03:00
.adhpbeou {
> .label {
font-size: 0.85em;
2021-11-28 13:07:37 +02:00
padding: 0 0 8px 0;
2021-09-29 18:50:45 +03:00
user-select: none;
&:empty {
display: none;
}
}
> .caption {
2021-11-28 13:07:37 +02:00
font-size: 0.85em;
padding: 8px 0 0 0;
2021-09-29 18:50:45 +03:00
color: var(--fgTransparentWeak);
&:empty {
display: none;
}
}
}
</style>