Socket
Book a DemoInstallSign in
Socket

vue3-mermaid

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue3-mermaid

flowchart of mermaid with vue componet

0.0.6
latest
Source
npmnpm
Version published
Maintainers
1
Created
Source

vue3-mermaid

flowchart of mermaid with vue componet

Requirements

  • Vue.js
  • mermaid

Install Setup

# install dependencies
npm install --save vue3-mermaid

Usage

Register component

import Vue3Mermaid from "vue3-mermaid";
Vue.use(Vue3Mermaid);

Use component

export default {
  data: function() {
    return {
      data: [
        {
          id: "11",
          text: "A",
          link: "---",
          next: ["2"],
          editable: true,
          style: "fill:#f9f,stroke:#333,stroke-width:4px",
        },
        { id: "22", text: "B", edgeType: "circle", next: ["3"] },
        { id: "33", text: "C", next: ["4", "6"] },
        { id: "44", text: "D", link: "-- This is the text ---", next: ["5"] },
        { id: "55", text: "E" },
        { id: "66", text: "F" }
      ]
    };
  },
  methods: {
    editNode(nodeId) {
      alert(nodeId);
    }
  }
};
nodes: [
        {
          id: "1",
          text: "A",
          link: ["-- yes -->", "-- no -->"],
          linkNumber: 1,
          linkStyle: "fill:none,stroke:red,stroke-width:1px;",
          next: ["2", "3"],
          editable: true
        },
        { id: "2", text: "B" },
        { id: "3", text: "C"}
      ],

Template

<template>
  <vue3-mermaid
    :nodes="data"
    type="graph LR"
    @nodeClick="editNode"
  ></vue3-mermaid>
</template>

Group Type

export default {
  data: function() {
    return {
      data: [
        {
          id: "1",
          text: "A",
          link: "---",
          next: ["2"],
          group: "one"
        },
        { id: "2", text: "B", edgeType: "circle", next: ["3"], group: "one" },
        { id: "3", text: "C", next: ["4", "6"], group: "two" },
        {
          id: "4",
          text: "D",
          link: "-- This is the text ---",
          next: ["5"],
          group: "two"
        },
        { id: "5", text: "E", group: "three" },
        { id: "6", text: "F", group: "three", , url: "http://www.github.com" }
      ]
    };
  }
};

Theme

  • To change theme, you can pass in a config object, for available themes, you can refer to mermaidjs themes
<template>
  <vue3-mermaid
    type="graph LR"
    :config="config"
  ></vue3-mermaid>
</template>
export default {
  data: function() {
    return {
      config: {
        theme: 'neutral'
      }
    };
  }
};

Build Setup

# install dependencies
npm install

# build for production with minification
npm run build

Keywords

vue

FAQs

Package last updated on 24 May 2021

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

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.