mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-10 07:48:37 +01:00
15 lines
261 B
Vue
15 lines
261 B
Vue
<script lang="ts" setup>
|
|
|
|
|
|
|
|
const props = defineProps<{ size?: string }>();
|
|
|
|
const widgetStyle = computed(() => {
|
|
return `height: ${props.size ?? '1px'}`;
|
|
})
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div :style="widgetStyle" class="bg-lyx-widget-light"></div>
|
|
</template> |