vue-weui-next
v1.0.24
Published
[中文版](./README_ZH.md) | English
Downloads
1,273
Readme
中文版 | English
vue-weui
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)
<link rel="stylesheet" href="https://res.wx.qq.com/t/wx_fed/weui-source/res/2.6.16/weui.min.css"/>
Install component package.
npm install vue-weui-next
# or
yarn install vue-weui-next
Complete introduction.
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.
<template>
<Button>button</Button>
</template>
<script>
import { Button } from 'vue-weui-next'
export default {
components: { Button },
}
</script>
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.
bangtz (Add please note vue-weui)