0.0.8 • Published 7 months ago

just-draw-it v0.0.8

Weekly downloads
-
License
MIT
Repository
github
Last release
7 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

7 months ago

0.0.7

7 months ago

0.0.6

7 months ago

0.0.5

8 months ago

0.0.4

8 months ago

0.0.3

8 months ago

0.0.2

8 months ago

0.0.1

8 months ago