Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 组件库
- Host: GitHub
- URL: https://github.com/kennyzuo/xixi
- Owner: kennyzuo
- Created: 2018-11-27T01:18:37.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-10T20:41:26.000Z (about 2 years ago)
- Last Synced: 2025-01-16T18:20:07.256Z (3 days ago)
- Topics: bulma, ui, vue
- Language: JavaScript
- Homepage:
- Size: 952 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
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
```