<script setup lang="ts">
|
import { computed, ref ,onBeforeUpdate, nextTick} from "vue";
|
import merge from "lodash/merge";
|
import { useElementSize } from "@vueuse/core";
|
import type { PropType } from "vue";
|
const config = {
|
header: ['列1', '列2', '列3'],
|
data: [
|
['行1列1', '行1列2', '行1列3'],
|
['行2列1', '行2列2', '行2列3'],
|
['行3列1', '行3列2', '行3列3'],
|
['行4列1', '行4列2', '行4列3'],
|
['行5列1', '行5列2', '行5列3'],
|
['行6列1', '行6列2', '行6列3'],
|
['行7列1', '行7列2', '行7列3'],
|
['行8列1', '行8列2', '行8列3'],
|
['行9列1', '行9列2', '行9列3'],
|
['行10列1', '行10列2', '行10列3']
|
],
|
index: true,
|
columnWidth: [50],
|
align: ['center']
|
}
|
const props = defineProps({
|
color: {
|
type: Array as unknown as PropType<[string, string]>,
|
default: () => [],
|
},
|
backgroundColor: {
|
type: String,
|
default: "transparent",
|
},
|
});
|
const defaultColor = ["#6586ec", "#2cf7fe"];
|
const domRef = ref(null);
|
const { width, height } = useElementSize(domRef,{width:0,height:0}, { box: 'border-box' });
|
const mergedColor = computed<[string, string]>(() => {
|
return merge(defaultColor, props.color);
|
});
|
|
|
</script>
|
|
<template>
|
<div class="dv-border-box-13 dv-border-box" ref="domRef">
|
<svg :width="width" :height="height" class="dv-border-svg-container">
|
<path
|
:fill="backgroundColor"
|
:stroke="mergedColor[0]"
|
:d="`
|
M 5 20 L 5 10 L 12 3 L 60 3 L 68 10
|
L ${width - 20} 10 L ${width - 5} 25
|
L ${width - 5} ${height - 5} L 20 ${height - 5}
|
L 5 ${height - 20} L 5 20
|
`"
|
/>
|
|
<path
|
fill="transparent"
|
stroke-width="3"
|
stroke-linecap="round"
|
stroke-dasharray="10, 5"
|
:stroke="mergedColor[0]"
|
:d="`M 16 9 L 61 9`"
|
/>
|
|
<path
|
fill="transparent"
|
stroke="{mergedColor[1]}"
|
:d="`M 5 20 L 5 10 L 12 3 L 60 3 L 68 10`"
|
/>
|
|
<path
|
fill="transparent"
|
:stroke="mergedColor[1]"
|
:d="`M ${width - 5} ${height - 30} L ${width - 5} ${height - 5} L ${
|
width - 30
|
} ${height - 5}`"
|
/>
|
</svg>
|
<div class="dv-border-box-content">
|
|
<slot></slot>
|
</div>
|
</div>
|
</template>
|
|
<style scoped lang="scss">
|
.dv-border-box {
|
position: relative;
|
box-sizing: border-box;
|
width: 100%;
|
height: 100%;
|
padding: 20px 0;
|
}
|
.dv-border-svg-container {
|
position: absolute;
|
width: 100%;
|
height: 100%;
|
top: 0px;
|
left: 0px;
|
display: block;
|
}
|
.dv-border-box-content {
|
position: relative;
|
width: 100%;
|
height: 100%;
|
}
|
</style>
|