| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <template>
- <div :class="['border-line', type, { 'wide': isWide }]"></div>
- </template>
- <script lang="ts">
- import { PropType } from 'vue'
- import { OperateBorderLine } from '@/types/edit'
- export default {
- name: 'border-line',
- props: {
- type: {
- type: String as PropType<OperateBorderLine>,
- required: true,
- },
- isWide: {
- type: Boolean,
- default: false,
- },
- },
- }
- </script>
- <style lang="scss" scoped>
- .border-line {
- position: absolute;
- width: 0;
- height: 0;
- left: 0;
- top: 0;
- border: 0 dashed $themeColor;
- &.top {
- border-top-width: 1px;
- }
- &.bottom {
- border-bottom-width: 1px;
- }
- &.left {
- border-left-width: 1px;
- }
- &.right {
- border-right-width: 1px;
- }
- &.wide {
- &::before {
- content: '';
- position: absolute;
- background: transparent;
- cursor: move;
- }
- &.top::before {
- top: -8px;
- left: -8px;
- width: calc(100% + 16px);
- height: 16px;
- }
- &.bottom::before {
- bottom: -8px;
- left: -8px;
- width: calc(100% + 16px);
- height: 16px;
- }
- &.left::before {
- top: -8px;
- left: -8px;
- width: 16px;
- height: calc(100% + 16px);
- }
- &.right::before {
- top: -8px;
- right: -8px;
- width: 16px;
- height: calc(100% + 16px);
- }
- }
- }
- </style>
|