2.5.11 • Published 2 years ago

lingxing-ui v2.5.11

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

基于element-ui v2.15.1 代码修改

Install

  1. 全局安装nrm
npm install -g nrm
  1. 添加企业内部私有源
nrm add ak http://npm.naloc.cn
  1. 列出全部nrm源
nrm ls
  1. 切换nrm源
nrm use ak
  1. 安装
npm install lingxing-ui -S

Quick Start

import Vue from 'vue'
import LINGXING from 'lingxing-ui'
import 'lingxing-ui/lib/theme-chalk/index.css'

Vue.use(LINGXING)

// or
import {
  Select,
  Button
  // ...
} from 'lingxing-ui'

Vue.component(Select.name, Select)
Vue.component(Button.name, Button)