vue-weui-next
TypeScript icon, indicating that this package has built-in type declarations

1.0.14 • Public • Published

中文版 | English

vue-weui

codecov

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/open/libs/weui/2.3.0/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, please feel free to submit an issue. The author will update and fix them in time. Thank you.

bangtz (Add please note vue-weui)

License

Apache License 2.0

Readme

Keywords

Package Sidebar

Install

npm i vue-weui-next

Weekly Downloads

1

Version

1.0.14

License

Apache-2.0

Unpacked Size

524 kB

Total Files

215

Last publish

Collaborators

  • chensir725