Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

vue-mermaid

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue-mermaid

flowchart of mermaid with vue componet

  • 0.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
261
decreased by-26.06%
Maintainers
1
Weekly downloads
 
Created
Source

vue-mermaid

flowchart of mermaid with vue componet

Requirements

  • Vue.js
  • mermaid

Install Setup

# install dependencies
npm install --save vue-mermaid

Usage

register component

import VueMermaid from 'vue-mermaid'
export default {
  components: {
      VueMermaid
    },
  data:function(){
    return {
      data:[
        {id:'1',text:'A',next:['2']},
        {id:'2',text:'B',next:['3']},
        {id:'3',text:'C',next:['4','6']},
        {id:'4',text:'D',next:['5']},
        {id:'5',text:'E'},
        {id:'6',text:'F'}
      ]
    }
  }
}

template

<template>
  <vue-mermaid :nodes="data"></vue-mermaid>
</template>

result

Flowchart

Build Setup

# install dependencies
npm install

# build for production with minification
npm run build

Keywords

FAQs

Package last updated on 28 Sep 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc