2021-09-17 00:18:50 +08:00
---
title: Quick Start
2021-10-22 19:32:39 +08:00
lang: en-US
2021-09-17 00:18:50 +08:00
---
# Quick Start
This section describes how to use Element Plus in your project.
## Usage
### Full Import
If you don’ t care about the bundle size so much, it’ s more convenient to use full import.
```typescript
// main.ts
import { createApp } from 'vue'
import ElementPlus from 'element-plus'
import 'element-plus/dist/index.css'
import App from './App.vue'
const app = createApp(App)
app.use(ElementPlus)
app.mount('#app')
```
2021-09-26 00:06:46 +08:00
#### Volar support
If you use volar, please add the global component type definition to `compilerOptions.types` in `tsconfig.json` .
```json
// tsconfig.json
{
"compilerOptions": {
// ...
"types": ["element-plus/global"]
}
}
```
2021-09-17 00:18:50 +08:00
### On-demand Import
You need to use an additional plugin to import components you used.
#### Auto import <el-tag type="primary" style="vertical-align: middle;" effect="dark" size="small">Recommend</el-tag>
2021-12-28 20:16:46 +08:00
First you need to install `unplugin-vue-components` and `unplugin-auto-import` .
2021-09-17 00:18:50 +08:00
```shell
2021-11-29 15:59:32 +08:00
npm install -D unplugin-vue-components unplugin-auto-import
2021-09-17 00:18:50 +08:00
```
2021-11-29 15:59:32 +08:00
Then add the code below into your `Vite` or `Webpack` config file.
2021-09-17 00:18:50 +08:00
##### Vite
```ts
// vite.config.ts
2021-11-29 15:59:32 +08:00
import AutoImport from 'unplugin-auto-import/vite'
2021-09-17 00:18:50 +08:00
import Components from 'unplugin-vue-components/vite'
import { ElementPlusResolver } from 'unplugin-vue-components/resolvers'
export default {
plugins: [
// ...
2021-11-29 15:59:32 +08:00
AutoImport({
resolvers: [ElementPlusResolver()],
}),
2021-09-17 00:18:50 +08:00
Components({
resolvers: [ElementPlusResolver()],
}),
],
}
```
##### Webpack
2022-03-08 14:03:32 +08:00
```js
2021-09-17 00:18:50 +08:00
// webpack.config.js
2021-12-08 23:13:48 +08:00
const AutoImport = require('unplugin-auto-import/webpack')
2021-09-17 00:18:50 +08:00
const Components = require('unplugin-vue-components/webpack')
const { ElementPlusResolver } = require('unplugin-vue-components/resolvers')
module.exports = {
// ...
plugins: [
2021-11-29 15:59:32 +08:00
AutoImport({
resolvers: [ElementPlusResolver()],
}),
2021-09-17 00:18:50 +08:00
Components({
resolvers: [ElementPlusResolver()],
}),
],
}
```
2021-11-29 15:59:32 +08:00
For more bundlers ([Rollup](https://rollupjs.org/), [Vue CLI ](https://cli.vuejs.org/ )) and configs please reference [unplugin-vue-components ](https://github.com/antfu/unplugin-vue-components#installation ) and [unplugin-auto-import ](https://github.com/antfu/unplugin-auto-import#install ).
2021-09-17 00:18:50 +08:00
2021-11-29 15:59:32 +08:00
### Manually import
2021-09-17 00:18:50 +08:00
Element Plus provides out of box [Tree Shaking ](https://webpack.js.org/guides/tree-shaking/ )
functionalities based on ES Module.
But you need install [unplugin-element-plus ](https://github.com/element-plus/unplugin-element-plus ) for style import.
And refer to the [docs ](https://github.com/element-plus/unplugin-element-plus#readme ) for how to configure it.
> App.vue
```html
< template >
< el-button > I am ElButton< / el-button >
< / template >
< script >
import { ElButton } from 'element-plus'
export default {
components: { ElButton },
}
< / script >
```
```ts
// vite.config.ts
import ElementPlus from 'unplugin-element-plus/vite'
export default {
plugins: [ElementPlus()],
}
```
2021-11-29 15:59:32 +08:00
:::warning
You need to manually import the styles if you're using `unplugin-element-plus` and only used the component API.
Example:
```ts
import 'element-plus/es/components/message/style/css'
import { ElMessage } from 'element-plus'
```
:::
2021-09-17 00:18:50 +08:00
## Starter Template
2022-01-24 01:35:51 +08:00
We provide a [Vite Template ](https://github.com/element-plus/element-plus-vite-starter ).
2021-09-17 00:18:50 +08:00
For Laravel users we have a [Laravel Template ](https://github.com/element-plus/element-plus-in-laravel-starter ).
## Global Configuration
When registering Element Plus, you can pass a global config object with `size` and
`zIndex` to set the default `size` for form components, and `zIndex` for
popup components, the default value for `zIndex` is `2000` .
Full import:
```ts
import { createApp } from 'vue'
import ElementPlus from 'element-plus'
import App from './App.vue'
const app = createApp(App)
app.use(ElementPlus, { size: 'small', zIndex: 3000 })
```
On-demand:
2022-01-05 03:44:08 +08:00
```vue
< template >
2022-03-08 14:03:32 +08:00
< el-config-provider :size = "size" :z-index = "zIndex" >
2022-01-05 03:44:08 +08:00
< app / >
< / el-config-provider >
< / template >
2021-09-17 00:18:50 +08:00
2022-01-05 03:44:08 +08:00
< script >
import { defineComponent } from 'vue'
import { ElConfigProvider } from 'element-plus'
export default defineComponent({
components: {
ElConfigProvider,
},
setup() {
return {
2022-01-05 14:12:35 +08:00
zIndex: 3000,
2022-01-05 03:44:08 +08:00
size: 'small',
}
},
})
< / script >
2021-09-17 00:18:50 +08:00
```
## Using Nuxt.js
2022-02-22 15:52:03 +08:00
We can also use [Nuxt.js ](https://v3.nuxtjs.org/ ):
2021-09-17 00:18:50 +08:00
< div class = "glitch-embed-wrap" style = "height: 420px; width: 100%;" >
2022-02-22 15:52:03 +08:00
< iframe src = "https://glitch.com/edit/#!/nuxt-element-plus?path=components%2FExamples.vue%3A1%3A0" alt = "nuxt-element-plus on glitch" style = "height: 100%; width: 100%; border: 0;" > < / iframe >
2021-09-17 00:18:50 +08:00
< / div >
## Let's Get Started
2021-12-28 20:16:46 +08:00
You can bootstrap your project from now on. For each components usage, please
refer to the individual component documentation.