Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/banggx/vue-weui
基于vue3封装实现的weui样式组件库
https://github.com/banggx/vue-weui
typescript vue vue-components vue3 weui
Last synced: 7 days ago
JSON representation
基于vue3封装实现的weui样式组件库
- Host: GitHub
- URL: https://github.com/banggx/vue-weui
- Owner: banggx
- License: apache-2.0
- Created: 2024-03-11T14:11:09.000Z (8 months ago)
- Default Branch: master
- Last Pushed: 2024-10-28T02:36:16.000Z (18 days ago)
- Last Synced: 2024-10-28T06:18:16.836Z (18 days ago)
- Topics: typescript, vue, vue-components, vue3, weui
- Language: TypeScript
- Homepage: https://banggx.github.io/vue-weui/
- Size: 624 KB
- Stars: 130
- Watchers: 12
- Forks: 22
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
[中文版](./README_ZH.md) | English
# vue-weui
[![](https://shields.io/github/package-json/v/bangtz/vue-weui/master/packages/vue-weui)](https://github.com/bangtz/vue-weui/tree/master/packages/vue-weui)
[![](https://pkg-size.dev/badge/bundle/105782)](https://pkg-size.dev/vue-weui-next)
[![codecov](https://codecov.io/gh/bangtz/vue-weui/graph/badge.svg?token=6TNVSF7OYT)](https://codecov.io/gh/bangtz/vue-weui)
[![](https://img.shields.io/badge/language-vue-orange.svg)](https://vuejs.org/)
![](https://img.shields.io/npm/l/vue-weui-next.svg)Weui style UI component library developed and implemented based on Vue3.
## Quick start
Before starting to use it, you need to introduce the weui style file into the html file. ([WeUI](https://github.com/Tencent/weui))
```html
```
Install component package.
```bash
npm install vue-weui-next# or
yarn install vue-weui-next
```Complete introduction.
```ts
import { createApp } from 'vue';
import App from './App.vue';
import Weui from 'vue-weui-next';const app = createApp(App);
app.use(Weui);
app.mount('#app');
```Manual import.
```html
button
import { Button } from 'vue-weui-next'
export default {
components: { Button },
}```
## Contact
Currently, the content of the basic components of weui has been improved. We will continue to update and improve the components related to the weui form form in the future. If you are interested in this project, you are welcome to contribute.
If you find any code problems, or there are new components or capabilities that you hope to add, please feel free to submit an issue. The author will update and fix them in time. Thank you.
> ![](https://open.weixin.qq.com/zh_CN/htmledition/res/assets/res-design-download/icon16_wx_logo.png) *bangtz* (Add please note vue-weui)
# License
[Apache License 2.0](LICENSE)