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

vue-flow-grid

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue-flow-grid

A simple flow grid component for Vue.js

  • 0.0.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
decreased by-81.82%
Maintainers
1
Weekly downloads
 
Created
Source

vue-flow-grid

A simple flow grid component for Vue.js

How to use

Install

npm install vue-flow-grid

import

import Vue from 'vue'
import FlowGrid from 'vue-flow-grid'
Vue.use(FlowGrid);

example

<ul v-flowgrid="3">
    <li>111</li>
    <li>222</li>
    <li>333</li>
    <li>444</li>
    <li>555</li>
    <li>666</li>
    <li>777</li>
    <li>888</li>
</ul>

The code above will be compiled to:

<ul>
    <div id="vFlowgrid1" style="width: 20%; float: left;">
        <li>111</li>
        <li>444</li>
        <li>777</li>
    </div>
    <div id="vFlowgrid2" style="width: 20%; float: left;">
        <li>222</li>
        <li>555</li>
        <li>888</li>
    </div>
    <div id="vFlowgrid3" style="width: 20%; float: left;">
        <li>333</li>
        <li>666</li>
    </div>
</ul>

TODO LIST

  • test
  • lazyload

Keywords

FAQs

Package last updated on 12 Jan 2017

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