npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

vue-mind-mapping

v1.2.6

Published

A Vue component to mind-mapping

Downloads

41

Readme

vue-mind-mapping

A Vue component to mind-mapping 一个类似思维导图的小工具

demo演示

demo

dragScreenshot

安装

npm install vue-mind-mapping -S

使用

使用之前一定要安装svg.js
svg.js
   import svgJs from "svg.js/dist/svg"

   export default {
       install(Vue) {
           Vue.prototype.$svg = svgJs
       }
   }

main.js
   import svgJs from "./svg.js"
   Vue.use(svgJs);

// ES6
import vuemindmapping from 'vue-mind-mapping'

Vue.use(vuemindmapping)

<MindMapping 
   v-model     = "testData"
   :width      = 'width'
   :height     = 'height'
   :spacing    = '50'
   topColor    = '#646464'
   :fontSize   = '30'
   :fontLength = '10'
   :onlyColor  = 'true'
></MindMapping>

width, height

初始宽高

spacing

标题之间的横向间距,纵向间距是标题的高度

topColor

主标题的颜色以及箭头颜色

fontSize

标题文字大小,下一级标题文字大小是上一级的0.8最小是14

fontLength

每个标题显示的字数显示不玩的会用...代替

onlyColor

设置图标颜色为单一颜色

v-model

会返回一个json字符串,代表生成的导图数据格式, 要是想要加载生成的导图,需要一开始传入导图的json字符串

    '{
        "x":5,
        "y":400,
        "title":"主标题",
        "index":0,
        "color":"#646464",
        "size":30,
        "sprites":[
            {
                "x":185,
                "y":-171.0703125,
                "title":"随机分配颜色",
                "index":1,
                "color":"#e78ed9",
                "size":24,
                "sprites":[ ]
            }
        ]
    }',

Props

| name | type | default | type | | -------- | :------: | :-----: | ---- | | value | String | | 必传 | width | Number | 500 | 选择参数,也可以不传 | height | Number | 500 | 选择参数,也可以不传 | spacing | Number | 50 | 选择参数,也可以不传 | topColor | String | #ff2970 | 选择参数,也可以不传 | fontSize | Number | 40 | 选择参数,也可以不传 | fontLength | Number | 7 | 选择参数,也可以不传 | onlyColor | Boolean | false | 选择参数,也可以不传