All Projects → LeeBoYin → vue-layout-system

LeeBoYin / vue-layout-system

Licence: other
A pack of Vue components that solve daily layout problems

Programming Languages

SCSS
7915 projects
Vue
7211 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to vue-layout-system

React Flexview
A powerful React component to abstract over flexbox and create any layout on any browser
Stars: ✭ 276 (+790.32%)
Mutual labels:  flex, grid, layout
flexboxes
CSS flexbox framework with pure flexbox grid ability
Stars: ✭ 27 (-12.9%)
Mutual labels:  flex, grid, layout
Core Layout
Flexbox & CSS-style Layout in Swift.
Stars: ✭ 215 (+593.55%)
Mutual labels:  flex, layout
Bootstrap 4 Grid
Bootstrap 4 grid system and layout utilities.
Stars: ✭ 251 (+709.68%)
Mutual labels:  flex, grid
react-super-styled
Responsive JSX layouts with Styled Components
Stars: ✭ 77 (+148.39%)
Mutual labels:  grid, layout
Css Grid Flex
📖An introduction about grid and flex of css.
Stars: ✭ 127 (+309.68%)
Mutual labels:  flex, grid
Flexible Grid
Flexible grid layouts to get you familiar with building within the flexible grid system.(HTML, CSS, SASS, SCSS)
Stars: ✭ 154 (+396.77%)
Mutual labels:  flex, grid
aarbac
An Automated Role Based Access Control .NET framework with T-SQL Query Parser which automatically parse select, insert, update, delete queries based on the logged in user role
Stars: ✭ 18 (-41.94%)
Mutual labels:  row, column
griding
🧱 lean grid & responsive for react
Stars: ✭ 18 (-41.94%)
Mutual labels:  grid, layout
bootstrap-grid-card
Bootstrap grid in Lovelace UI
Stars: ✭ 25 (-19.35%)
Mutual labels:  grid, layout
egjs-grid
A component that can arrange items according to the type of grids
Stars: ✭ 188 (+506.45%)
Mutual labels:  grid, layout
React Flexa
Responsive React Flexbox (CSS Flexible Box Layout Module) grid system based heavily on the standard CSS API.
Stars: ✭ 120 (+287.1%)
Mutual labels:  flex, grid
Horseshoe
🍧代号马蹄铁。以专题为单位的学习。目前已发布 { Async专题 } { Grid专题 } { Flex专题 } { Git专题 } { Regex专题 } { Redux专题 } { React专题 }
Stars: ✭ 521 (+1580.65%)
Mutual labels:  flex, grid
Primereact
The Most Complete React UI Component Library
Stars: ✭ 2,393 (+7619.35%)
Mutual labels:  flex, grid
Re Flex
Resizable Flex layout container components for advanced React web applications
Stars: ✭ 349 (+1025.81%)
Mutual labels:  flex, layout
masonry-css
Create mosaic grid, like masonry, with css only
Stars: ✭ 17 (-45.16%)
Mutual labels:  grid, layout
VueFlex
A flexbox grid system.
Stars: ✭ 13 (-58.06%)
Mutual labels:  flex, grid
Katana
Katana is CSS Layout System made with Flexbox
Stars: ✭ 57 (+83.87%)
Mutual labels:  flex, grid
examples
speedata Publisher examples
Stars: ✭ 25 (-19.35%)
Mutual labels:  grid, layout
rebass
⚛️ React primitive UI components built with styled-system.
Stars: ✭ 7,844 (+25203.23%)
Mutual labels:  grid, layout

Vue Layout System

npm (scoped)

Vue Layout System is a pack of Vue components that solve daily layout problems.

Lightweight and no dependencies.

Please check out the Documentation Website for demo and more information.

Overview

Vue Layout System lets you intuitively arrange your components. Simply drop your contents into slots, configure options with props, Vue Layout system will take care of all CSS challenges for you.

With Vue Layout System developers are empowered to

  • Create various types of layout with much shorter developing time
  • Arrange contents faster in a intuitive and predictable way
  • Control space between contents precisely with system-wide consistency

Layout Components

Vue Layout System is a pack of Vue components, where each one layout component solves one specific problem while sharing similar pattern with the others.

  • LayoutAbsolute lets you place contents at 9 absolute positions in a relative position element.
  • LayoutAlign lets you align contents both horizontally and vertically.
  • LayoutColumns divide a space evenly into columns, arranging contents into the columns in order.
  • LayoutFlexColumn divides a vertical space into 3 sections, where you can place contents at top, bottom and the remaining space.
  • LayoutFlexRow divides a horizontal space into 3 sections, where you can place contents at left, right and the remaining space.
  • LayoutGrid divides a horizontal space into a number of columns evenly, helps align elements based on sequenced columns and rows.
  • LayoutList arranges contents vertically.
  • LayoutListInline arranges contents horizontally.

Spacing System

Vue Layout System uses a finite set of spacing scales for all spacing needs, such as padding around the contents and gaps between contents. This is a vital foundation for consistent and precise control of the spacing.

The default spacing scales are integers from 0 to 10, You can easily customize the spacing scales by using either Sass variables or CSS custom properties. See more details in Customize.

Installation

JavaScript Package Manager

The preferred way to use Vue Layout System is to install via JavaScript package manager.

Install via npm

npm install vue-layout-system

Add to Vue

import vueLayoutComponents from 'vue-layout-system';
import 'vue-layout-system/dist/vue-layout-system.css';

new Vue({
	components: {
		...vueLayoutComponents,
	}
});

CDN

Alternatively, if your project doesn't have a build process, you can load Vue Layout System directly off of a CDN. Note that you need to load Vue before loading Vue Layout System into your project.

<script src="https://unpkg.com/vue-layout-system"></script>
<link rel="stylesheet" href="https://unpkg.com/vue-layout-system/dist/vue-layout-system.css">

<div id="app">
	<!-- Note that components use kebab-case when installed with CDN -->
	<layout-list>
		...
	</layout-list>
</div>

To learn how layout components work, please check out the Documentation Website for demo and more information.

Contributing

For any question or feature request please feel free to create an issue or pull request.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].