Overview
Vuele is a business component library based on ElementUI. It provides a collection of reusable components for building business applications. Vuele’s documentation can be found at https://lq782655835.github.io/vuele/.
Features
- Easy integration: Vuele is built on top of ElementUI, making it easy to integrate into existing Vue.js projects.
- Reusable components: Vuele provides a wide range of components that can be used to build various business applications.
- Consistent design: The components in Vuele follow a consistent design language, ensuring a cohesive look and feel throughout the application.
Installation
To use Vuele, you need to install it along with its dependency, ElementUI. Follow these steps to install Vuele:
Install ElementUI:
npm install element-uiInstall Vuele:
npm install vueleImport and use Vuele in your project:
import Vue from 'vue' import ElementUI from 'element-ui' import Vuele from 'vuele' // Import the required styles for ElementUI and Vuele import 'element-ui/lib/theme-chalk/index.css' import 'vuele/dist/vuele.css' // Use ElementUI and Vuele Vue.use(ElementUI) Vue.use(Vuele) // Your Vue.js application initialization code
Summary
Vuele is a business component library for Vue.js that is built on top of ElementUI. It provides reusable components with a consistent design language, making it easier to build business applications. By following the installation guide, users can integrate Vuele into their projects and start leveraging its features to enhance their application development process.