shards-vue

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

Github星跟踪图

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.

主要指标

概览
名称与所有者DesignRevision/shards-vue
主编程语言Vue
编程语言JavaScript (语言数: 2)
平台
许可证MIT License
所有者活动
创建于2018-09-11 10:32:37
推送于2022-12-09 13:00:14
最后一次提交2019-01-20 15:40:28
发布数4
最新版本名称v1.0.7 (发布于 )
第一版名称v1.0.4 (发布于 )
用户参与
星数395
关注者数6
派生数40
提交数40
已启用问题?
问题数21
打开的问题数12
拉请求数5
打开的拉请求数15
关闭的拉请求数2
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?