vue-drawing-board-extend
v0.1.3
Published
Very light vue drawing board
Downloads
2
Readme
vue-drawing-board-extend
vue-drawing-board-extend is a drwaing board integration for Vue.js.
🚀 Installation
npm install vue-drawing-board-extend --save
Demo
https://vue-drawing-board.vercel.app/
How to use it
<template>
<div>
<VueDrawingBoard
:height="450"
:width="600"
outputName="drawing"
/>
</div>
</template>
<script>
import VueDrawingBoard from 'vue-drawing-board-extend'
export default {
name: "app",
components: {
VueDrawingBoard
},
};
</script>