0.0.8 • Published 9 months ago

just-draw-it v0.0.8

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

describe

just-draw-it is a simple vue3 component library, which can draw graph in svg (not in canvas)

just draw it

npm.io

how to use

npm i just-draw-it

global

import { createApp } from 'vue';
import App from './App.vue';
import MyComponent from 'just-draw-it';
import 'just-draw-it/lib/style.css'

const app = createApp(App);
app.use(MyComponent);

app.mount('#app');

App.vue

<template>
  <my-component />
</template>

use in component

<script setup lang="ts">
import MyComponent from 'just-draw-it';
import 'just-draw-it/lib/style.css'

</script>

<template>
  <my-component />
</template>

props

  • readonly
<my-component :readonly="true" />
0.0.8

9 months ago

0.0.7

9 months ago

0.0.6

9 months ago

0.0.5

9 months ago

0.0.4

9 months ago

0.0.3

9 months ago

0.0.2

9 months ago

0.0.1

9 months ago