0.0.6 • Published 1 year ago
@snoofa-com/vue-plotting-ui-lib v0.0.6
VueJS Plotting UI Library
Introduction
A plotting UI component made using VueJS.
⚡ Quick Start
Getting started with VueJS Plotting UI Library is easy. To add to your project, choose your package manager and run one of the following commands:
Using npm
npm install vue-plotting-ui-libUsing yarn
yarn add vue-plotting-ui-libUsing pnpm
pnpm add vue-plotting-ui-libUsing bun
bun add vue-plotting-ui-libUsage
Import the component and its style
import LinePlotter from "vue-plotting-ui-lib"; import "vue-plotting-ui-lib/style.css";Use it
<line-plotter :imageSource="imageSource" :lines="lines" :loading="loading" :handleDragStop="handleDragStop" />See
example/App.vuefor more details