This is a cute UI components library for Vue 3.
IMPORTANT: This project is still working in progress.
Step 1: Install the @any-design/anyui
package.
# Suggested to use npm@8
$ npm install @any-design/anyui
$ yarn add @any-design/anyui
Step 2: Import the library into your project.
This is a minimal example:
import { createApp } from 'vue';
import AnyUI from '@any-design/anyui';
// DON'T forget to import the style file
import '@any-design/anyui/styles/index.css'; // or '@any-design/anyui/styles/index.scss'
const app = createApp(App);
app.use(AnyUI);
app.mount('#app');
We've added support for unplugin-vue-components
, it's easily to enable "Importing on demand" on your project.
To enable this feature, you need to do the following steps:
Step 1: Install unplugin-vue-components
and unplugin-auto-import
.
npm i unplugin-vue-components unplugin-auto-import -D
Step 2: Import the resolver to your project configuration.
import { AnyUIResolver } from '@any-design/anyui/lib/resolver';
import AutoImport from 'unplugin-auto-import/vite';
import Components from 'unplugin-vue-components/vite';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
AutoImport({
resolvers: [AnyUIResolver()],
}),
Components({
resolvers: [AnyUIResolver()],
}),
],
});
Step 3: Directly using components in the template:
<template>
<div class="container">
<a-button type="primary">Button</a-button>
</div>
</template>
The related component and styles will be imported automatically.
Step 4 (Optional): Import styles on demand:
In the main file you imported @any-design/anyui
, replace @any-design/anyui/style/index.css
to @any-design/anyui/style/theme.css
.
import { createApp } from 'vue';
import AnyUI from '@any-design/anyui';
// Modify the following line:
import '@any-design/anyui/styles/theme.css'; // or '@any-design/anyui/styles/theme.scss'
const app = createApp(App);
app.use(AnyUI);
app.mount('#app');
See Theme Customization for more details.
This project is written in TypeScript, providing a built-in Typescript definition file.
You can fork this project to your GitHub project repository, and clone the repository to your local machine. Of coures, you can also use GitHub Dev.
Git clone instructions:
$ git clone https://github.com/any-design/anyui.git
$ cd anyui
$ npm install
$ npm run dev
AnyDesign team members use our spare time to develop this project, we will review any contribution, and merge it into the main branch.
We have set up a CI pipeline to ensure that your code meets our prefer code standards, you have to pass the tests to merge your code into the main branch.
Welcome pull requests from anyone.
If you have any questions, please contact us. We also encourage the community members to help each other.
Before you start contributing, please read the How To Ask Questions The Smart Way, to make sure you can get the best answer.
- GitHub Issues
- Coming soon...
You can find all the documents under the docs
folder.
Documents were generated by gpt-3.5-turbo-16k
(some new documents were generated by gpt-4
).
⚠ We do not guarentee the accuracy of the documents as this time, they're for reference only. We will verify and modify all the documents in the future.
We've deployed a testground, where you can explore all of our UI components.