Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kennyzuo/xixi

基于 vue,bulma PC 端 UI 组件库
https://github.com/kennyzuo/xixi

bulma ui vue

Last synced: about 20 hours ago
JSON representation

基于 vue,bulma PC 端 UI 组件库

Awesome Lists containing this project

README

        

# Vue 组件库

## 储备知识

- Vue 脚手架的基本使用
- Vue 创建组件
- props 校验和$emit(常用)
- $attrs和$listeners
- 中央事件总线(非父子组件间通信)
- v-model
- provide和inject
- $parent和$children
- vuex

## 工具

- Rollup | Parcel

## nrm

掌握 nrm 基本用法

https://www.npmjs.com/package/nrm

## npm

掌握 npm 基本用法

https://www.npmjs.com/package/npm

## .gitignore

熟悉 .gitigore 的配置

https://git-scm.com/docs/gitignore

## .npmignore

熟悉 .npmignore 的配置

https://docs.npmjs.com/using-npm/developers.html

--------------------------------------------------------------------

# bu

## Project setup
```
yarn install
```

### Compiles and hot-reloads for development
```
npm run serve
```

### Compiles and minifies for production
```
npm run build
```

### Lints and fixes files
```
npm run lint
```

### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).

## yarn workplaces

```
// 工作区根目录安装依赖
yarn add xxx -D -W

// 给指定工作区安装依赖
yarn workplace [工作区(button)] add xxx@version

// 给所有工作区安装依赖
yarn install
```