Vuele screenshot

Vuele

Author Avatar Theme by Lq782655835
Updated: 21 Apr 2020
11 Stars

基于ElementUI上的业务组件库

Categories

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:

  1. Install ElementUI:

    npm install element-ui
    
  2. Install Vuele:

    npm install vuele
    
  3. Import 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.