mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-15 01:41:20 +08:00
36 lines
1.4 KiB
Markdown
36 lines
1.4 KiB
Markdown
## Installation
|
|
|
|
### npm
|
|
|
|
Installing with npm is recommended and it works seamlessly with [webpack](https://webpack.js.org/).
|
|
|
|
```shell
|
|
npm install element-plus --save
|
|
```
|
|
|
|
### CDN
|
|
|
|
Get the latest version from [unpkg.com/element-plus](https://unpkg.com/element-plus/) , and import JavaScript and CSS file in your page.
|
|
|
|
```html
|
|
<!-- import CSS -->
|
|
<link rel="stylesheet" href="https://unpkg.com/element-plus/lib/theme-chalk/index.css">
|
|
<!-- import JavaScript -->
|
|
<script src="https://unpkg.com/element-plus/lib/index.full.js"></script>
|
|
```
|
|
|
|
:::tip
|
|
We recommend our users to lock Element Plus's version when using CDN. Please refer to [unpkg.com](https://unpkg.com) for more information.
|
|
:::
|
|
|
|
### Hello world
|
|
|
|
If you are using CDN, a hello-world page is easy with Element Plus. [Online Demo](https://codepen.io/iamkun/pen/YzWMaVr)
|
|
|
|
<iframe height="469" style="width: 100%;" scrolling="no" title="YzWMaVr" src="https://codepen.io/iamkun/embed/YzWMaVr?height=469&theme-id=light&default-tab=html,result" frameborder="no" loading="lazy" allowtransparency="true" allowfullscreen="true">
|
|
See the Pen <a href='https://codepen.io/iamkun/pen/YzWMaVr'>YzWMaVr</a> by iamkun
|
|
(<a href='https://codepen.io/iamkun'>@iamkun</a>) on <a href='https://codepen.io'>CodePen</a>.
|
|
</iframe>
|
|
|
|
If you are using npm and wish to apply webpack, please continue to the next page: [Quick Start](/#/en-US/component/quickstart).
|