wshui

wshui组件

Usage no npm install needed!

<script type="module">
  import wshui from 'https://cdn.skypack.dev/wshui';
</script>

README

# wshui

基于Vue一套UI组件

安装

$ npm install wshui -S

使用

main.js 文件中引入插件并注册

# main.js
import wshui from 'wshui'
Vue.use(wshui)

在项目中使用 wshui

<template>
  <wsh-button size="small">默认按钮</wsh-button>
</template>
<script>
  export default {
    data () {
      return {
      }
    }
  }
</script>