All Projects → DesignRevision → Shards Vue

DesignRevision / Shards Vue

Licence: mit
🌟Shards Vue is a free, beautiful and modern Vue.js UI kit based on Shards.

Projects that are alternatives of or similar to Shards Vue

Material Design For Bootstrap
Important! A new UI Kit version for Bootstrap 5 is available. Access the latest free version via the link below.
Stars: ✭ 9,463 (+2326.41%)
Mutual labels:  design, uikit, bootstrap
Shards React
⚛️A beautiful and modern React design system.
Stars: ✭ 639 (+63.85%)
Mutual labels:  uikit, components, bootstrap
Boomerang Free Bootstrap Ui Kit
Boomerang is a high quality UI Kit built on top of the well known Bootstrap 4 Framework. This theme was designed as its own extended version of Bootstrap with multiple functionalities and controls added, extended color palette and beautiful typography.
Stars: ✭ 196 (-49.74%)
Mutual labels:  free, uikit, bootstrap
React Bootstrap With Material Design
React Bootstrap with Material Design - Powerful and free UI KIT
Stars: ✭ 1,119 (+186.92%)
Mutual labels:  design, uikit, bootstrap
Uix Kit
A free UI toolkit based on some common libraries for building beautiful responsive website, compatible with Bootstrap v4.
Stars: ✭ 318 (-18.46%)
Mutual labels:  design, uikit, bootstrap
Shards Ui
🎨Shards is a beautiful & modern Bootstrap 4 UI kit packed with extra templates and components.
Stars: ✭ 1,718 (+340.51%)
Mutual labels:  free, uikit, bootstrap
Shards Dashboard Vue
A free Vue admin dashboard template pack featuring a modern design system and lots of custom templates and components.
Stars: ✭ 363 (-6.92%)
Mutual labels:  modern, design, uikit
tailwind-ui-components
Free Tailwind CSS UI Components - Crafted for modern websites, landing pages and web apps. TailGrids Core is free and open-source so, feel free to use with your personal or commercial projects. If you would like to show your support and love, don't forget to give us a star 🌟
Stars: ✭ 49 (-87.44%)
Mutual labels:  components, free
Startbootstrap Shop Homepage
A shop homepage Bootstrap HTML template created by Start Bootstrap
Stars: ✭ 261 (-33.08%)
Mutual labels:  free, bootstrap
Polr
🚡 A modern, powerful, and robust URL shortener
Stars: ✭ 4,147 (+963.33%)
Mutual labels:  modern, bootstrap
Alva
Create living prototypes with code components.
Stars: ✭ 3,734 (+857.44%)
Mutual labels:  design, components
nextly-template
Nextly Landing Page Template built with Next.js & TailwindCSS
Stars: ✭ 48 (-87.69%)
Mutual labels:  uikit, free
taiga-ui
Angular UI Kit and components library for awesome people
Stars: ✭ 2,251 (+477.18%)
Mutual labels:  components, uikit
Startbootstrap Business Casual
A Bootstrap HTML theme for business websites - created by Start Bootstrap
Stars: ✭ 266 (-31.79%)
Mutual labels:  free, bootstrap
ng-sq-ui
Flexible and easily customizable UI-kit for Angular 11+
Stars: ✭ 99 (-74.62%)
Mutual labels:  components, uikit
Contraflutterkit
A Flutter UI kit with 50 plus screens for beginners to learn.
Stars: ✭ 288 (-26.15%)
Mutual labels:  design, uikit
ocean-web
Blu's Design System
Stars: ✭ 25 (-93.59%)
Mutual labels:  components, uikit
Mojs
The motion graphics toolbelt for the web
Stars: ✭ 17,189 (+4307.44%)
Mutual labels:  modern, design
Deskapp
DeskApp Admin is a free to use Bootstrap 4 admin template.
Stars: ✭ 296 (-24.1%)
Mutual labels:  free, uikit
Coreui Vue
Over 90 Bootstrap based Vue.js components and directives. CoreUI React.js UI Components. CoreUI for Vue.js replaces and extends the Bootstrap javascript. Components have been built from scratch as true Vue components, without jQuery and unneeded dependencies.
Stars: ✭ 318 (-18.46%)
Mutual labels:  components, bootstrap

Shards Vue is a free, beautiful and modern Vue.js UI kit
based on Shards.



Documentation & DemoOfficial Page

Getting Started

Getting started with Shards Vue is fairly simple. You can download Shards Vue via the official website, here on GitHub as a release package or by using a package manager such as Yarn or NPM.


Quick Start

You can install Shards Vue via Yarn or NPM.

// Install via Yarn
yarn add shards-vue

// Install via NPM
npm i shards-vue

Module Bundlers

If you are using a module bundler such as Webpack or Rollup, you can include the entire Shards Vue library inside your project.

import Vue from 'vue'
import ShardsVue from 'shards-vue'

// Import base styles (Bootstrap and Shards)
import 'bootstrap/dist/css/bootstrap.css'
import 'shards-ui/dist/css/shards.css'

Vue.use(ShardsVue);

Registering Components as Vue Plugins

If you'd like to register only certain components as Vue plugins, make sure to import just the component you'd like to use.

import Vue from 'vue'

// Import base styles (Bootstrap and Shards)
import 'bootstrap/dist/css/bootstrap.css'
import 'shards-ui/dist/css/shards.css'

import { Button } from 'shards-vue/src/components'
Vue.use(Button)


Importing Single File Components

Importing single file components is also possible.

<template>
    <d-button @click="handleClick">Click Me!</d-button>
</template>

<script>
import dButton from 'shards-vue/src/components/button/Button'

export default {
    components: {
        dButton
    },
    methods: {
        handleClick() {
            alert('You just clicked me!')
        }
    }
}
</script>

File Sizes

You can also run yarn bundlesize at any time to check the compiled file sizes.

File Name Size (min.gz)
shards-vue.common.min.js 46.29KB
shards-vue.esm.min.js 46.24KB
shards-vue.umd.min.js 39.3KB

Built Using


Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

If you'd like to fix a bug or work on a feature, make sure to follow the steps below in order to setup the development environment on your local machine:

  1. Clone the repository.
  2. Run yarn to install all required dependencies.
  3. Install Vue CLI and the CLI service globally by running: npm i -g @vue/cli @vue/cli-service-global or yarn global add @vue/cli-service-global.
  4. Run yarn watch in order to kickstart the server and run the sandbox with hot reloading.
  5. Refer to the sandbox/Sandbox.vue file for more details.

Roadmap

View the roadmap.


Changelog

View notable changes.

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].