Installation
Environment Requirements
- Node.js >= 16.x
- Vue >= 3.x
- Element Plus >= 2.x
Using Package Manager
We recommend using a package manager (such as npm, yarn, or pnpm) to install easy-elplus.
bash
npm install easy-elplusbash
yarn add easy-elplusbash
pnpm add easy-elplusInstall Element Plus
easy-elplus is built on top of Element Plus, so you need to install Element Plus first:
bash
npm install element-plusbash
yarn add element-plusbash
pnpm add element-plusBuild from Source
If you want to build easy-elplus from source:
bash
# Clone the repository
git clone https://github.com/jiayc4215/easy-elplus.git
# Enter project directory
cd easy-elplus
# Install dependencies
pnpm install
# Build project
pnpm buildAfter building, the artifacts will be output to the dist directory.
Development Environment
If you want to contribute to easy-elplus:
bash
# Install dependencies
pnpm install
# Start development server
pnpm dev
# Start documentation server
pnpm docs:devNext Steps
After installation, please check Quick Start to learn how to use easy-elplus in your project.
