| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <template>
- <div :class="getClass" :style="getDragBarStyle"></div>
- </template>
- <script lang="ts" setup>
- import { computed, unref } from 'vue';
- import { useDesign } from '@/hooks/web/useDesign';
- import { useMenuSetting } from '@/hooks/setting/useMenuSetting';
- defineOptions({ name: 'DargBar' });
- const props = defineProps({
- mobile: Boolean,
- });
- const { getMiniWidthNumber, getCollapsed, getCanDrag } = useMenuSetting();
- const { prefixCls } = useDesign('darg-bar');
- const getDragBarStyle = computed(() => {
- if (unref(getCollapsed)) {
- return { left: `${unref(getMiniWidthNumber)}px` };
- }
- return {};
- });
- const getClass = computed(() => {
- return [
- prefixCls,
- {
- [`${prefixCls}--hide`]: !unref(getCanDrag) || props.mobile,
- },
- ];
- });
- </script>
- <style lang="less" scoped>
- @prefix-cls: ~'@{namespace}-darg-bar';
- .@{prefix-cls} {
- position: absolute;
- z-index: @side-drag-z-index;
- top: 0;
- right: -2px;
- width: 2px;
- height: 100%;
- border-top: none;
- border-bottom: none;
- cursor: col-resize;
- &--hide {
- display: none;
- }
- &:hover {
- background-color: @primary-color;
- box-shadow: 0 0 4px 0 rgb(28 36 56 / 15%);
- }
- }
- </style>
|