frontend whiteboard canvas with rectangle support
This commit is contained in:
22
front/src/components/whiteboard/shapes/SvgDraftRect.vue
Normal file
22
front/src/components/whiteboard/shapes/SvgDraftRect.vue
Normal file
@@ -0,0 +1,22 @@
|
||||
<script setup lang="ts">
|
||||
const props = defineProps<{
|
||||
x: number
|
||||
y: number
|
||||
width: number
|
||||
height: number
|
||||
}>()
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<rect
|
||||
:x="props.x"
|
||||
:y="props.y"
|
||||
:width="props.width"
|
||||
:height="props.height"
|
||||
stroke="#4f9dff"
|
||||
:stroke-width="2"
|
||||
stroke-dasharray="6 3"
|
||||
fill="none"
|
||||
opacity="0.7"
|
||||
/>
|
||||
</template>
|
||||
Reference in New Issue
Block a user