forked from robertrosman/vue-paint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
20 lines (18 loc) · 814 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.svg">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>vue-paint</title>
</head>
<body>
<div class="layout">
<h1>vue<span style="font-size: 50px"> - </span>paint</h1>
vue-paint is a simple and lightweight paint component for vue projects. It can be used to add annotations to images, videos, or just draw some simple shapes to a canvas-like area.
Please check out the <a href="https://www.npmjs.com/package/vue-paint">npm package readme</a> for more details on how to get up and running, or just play around with the examples below.
<div id="app"></div>
</div>
<script type="module" src="/src/demo.ts"></script>
</body>
</html>