
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
vue-annotator
Advanced tools
Create annotation using SVG and HTML element.
<v-annotator inertia
:drawing="enableDrawingMode"
@select="openDialog"
:minSize="[50, 50]"
:grid="[5, 5]"
:multipleSelect="keyIsDown.Ctrl"
>
<img draggable="false" src="background.png" />
<rect slot="annotation" stroke="green" x="300" y="150" width="170" height="100" />
<polygon slot="annotation" stroke="purple" points="200,10 250,190 160,210" />
<rect slot="drawing" stroke="red" />
</v-annotator>
<style scoped>
@import '~vue-annotator/style.css';
/* Your beloved style */
</style>
--skipLibCheck
if using typescriptIn tsconfig.json
{
compilerOptions: {
skipLibCheck: true
}
}
Now it should work fine
import { Vue, Component } from 'vue-property-decorator'
import VAnnotator from 'vue-annotator'
@Component({ components: { VAnnotator } })
export class MyCanvas extends Vue {
/** Your beloved logic */
}
* : must be set if no background
Parameters | Description | Type | Must Specify | Default value |
---|---|---|---|---|
width | width of drawing canvas | Number | *optional | width of background |
height | width of drawing canvas | Number | *optional | height of background |
grid | set grid for sanpping. :grid="[w,h]" for setting width and height. :grid="w" for setting grid in square | Array[2] or Number | optional | null |
minSize | set minimum size of annotation. :minSize="[w,h]" for set minimum width and height of annotation size. :grid="w" for set minimum width and height of annotation size equal to w | Array[2] or Number | optional | false |
drawing | switch to drawing mode | Boolean | optional | false |
inertia | enable inertia moment animation when interacting | Boolean | optional | false |
multipleSelect | enable multiple select | Boolean | optional | false |
delete.sync | delete selected element when set to true | Boolean | optional |
* : will error when more than 1 element to be provided
Method name | Description | Accepted Element |
---|---|---|
default | background element of annotation | Any HTML element |
annotation | annotation element (accept SVG element) | <rect> , <ellipse> , <circle> , <polygon> , <path> , <foreignObject> |
drawing | *draw element via mouse click&drag | <rect> , <ellipse> , <circle> |
Event name | Description | Parameters |
---|---|---|
select | emit when element is click/select | element: SVG.Element |
unselect | emit when element is unselected (by clicking the background) | element: SVG.Element |
drawfinish | emit when drawing element is finish | element: SVG.Element |
drawcancel | emit when drawing element is canceled (via right click) | |
update:delete | emit when shape was successfully deleted |
Tips: use
element.node.isSameNode(this.$refs.myAnnotation)
for identifying the element.
Vue-Annotator use
svg.select.js
with this predefined style that can be override
Class name | Description | Notes |
---|---|---|
.svg_select_boundingRect | define style of rectangle in selected element | only applicable on <rect> , <circle> , <ellipse> |
.svg_select_points | define style of edge circles in selected element |
default style
.svg_select_points {
stroke-width: 1;
fill: black;
stroke-dasharray: 10 10;
stroke: black;
stroke-opacity: 0.8;
pointer-events: none; /* This ons is needed if you want to deselect or drag the shape*/
}
.svg_select_boundingRect {
display: none;
}
See CONTRIBUTING.md for contributing directly via:
MIT License
FAQs
Vue Component for drawing annotation (box, etc)
We found that vue-annotator demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.