You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP β†’
Socket
Book a DemoInstallSign in
Socket

vue-flow-layout

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue-flow-layout

🌊 The Vue waterfull layout component.

0.2.0
latest
Source
npmnpm
Version published
Weekly downloads
95K
4.97%
Maintainers
1
Weekly downloads
Β 
Created
Source

vue-flow-layout

🌊 The Vue waterfull layout component.

npm version npm downloads License

Features

  • 🌊 Waterfull layout
  • πŸ“¦ Lightweight
  • 🎨 Elegant transition
  • πŸ“± Responsive

Install

pnpm add vue-flow-layout

Usage

import { createApp } from 'vue'
import VueFlowLayout from 'vue-flow-layout'
import App from './App.vue'

createApp(App).use(VueFlowLayout).mount('#app')

Use in your component:

<template>
  <FlowLayout>
    <div v-for="i in 100" :key="i" class="item">
      {{ i }}
    </div>
  </FlowLayout>
</template>

Props

NameTypeDefaultDescription
colsnumber2The number of columns
gapnumber | [number, number]4The gap between items for X
durationnumber350msThe transition duration

Credits

license

MIT

Keywords

vue

FAQs

Package last updated on 25 Jun 2025

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