sk_fems_ui commit

This commit is contained in:
unknown
2025-07-12 15:13:46 +09:00
commit ffdf5ccb66
380 changed files with 137913 additions and 0 deletions

24
components/sd/SdDock.vue Normal file
View File

@ -0,0 +1,24 @@
<template>
<div ref="content" class="_sd-dock" :sd-position="position">
<slot />
</div>
</template>
<script>
export default {
name: 'SdDock',
props: {
position: {
type: String,
required: true,
validator: val => ['top', 'bottom', 'left', 'right'].includes(val),
},
},
};
</script>
<style scoped lang="scss">
._sd-dock {
position: absolute;
}
</style>