Quick Start
This section describes how to use easy-elplus in your project.
Prerequisites
- Node.js 16.x or higher
- Vue 3.x
- Element Plus 2.x
Full Import
If you are not concerned about bundle size, you can import all components fully.
javascript
// main.js
import { createApp } from "vue"
import ElementPlus from "element-plus"
import "element-plus/dist/index.css"
import EasyElPlus from "easy-elplus"
import App from "./App.vue"
const app = createApp(App)
app.use(ElementPlus)
app.use(EasyElPlus)
app.mount("#app")On-demand Import
easy-elplus supports on-demand import to reduce bundle size.
Manual Import
javascript
// main.js
import { createApp } from "vue"
import { EasyButton, EasyDialog } from "easy-elplus"
import App from "./App.vue"
const app = createApp(App)
app.component("EasyButton", EasyButton)
app.component("EasyDialog", EasyDialog)
app.mount("#app")Use in Components
vue
<template>
<div>
<easy-button type="primary" :loading="loading"> Submit </easy-button>
</div>
</template>
<script setup>
import { ref } from "vue"
import { EasyButton } from "easy-elplus"
const loading = ref(false)
</script>Start Using
Now you can start using easy-elplus! Check the documentation for each component to learn more:
