2020-08-13 15:18:26 +08:00
## Instalación
### npm
Instalar mediante npm es la forma recomendada ya que se integra fácilmente con [webpack ](https://webpack.js.org/ ).
```shell
2020-09-16 10:39:09 +08:00
npm install element-plus --save
2020-08-13 15:18:26 +08:00
```
### CDN
2020-09-16 10:39:09 +08:00
Obtenga la última versión desde [unpkg.com/element-plus ](https://unpkg.com/element-plus/ ) , e importe el JavaScript y los archivos CSS en su página.
2020-08-13 15:18:26 +08:00
```html
<!-- import CSS -->
2020-09-16 10:39:09 +08:00
< link rel = "stylesheet" href = "https://unpkg.com/element-plus/lib/theme-chalk/index.css" >
2020-08-13 15:18:26 +08:00
<!-- import JavaScript -->
2020-09-16 10:39:09 +08:00
< script src = "https://unpkg.com/element-plus/lib/index.js" > < / script >
2020-08-13 15:18:26 +08:00
```
##Tip
2020-09-16 10:42:23 +08:00
Recomendamos a nuestros usuarios congelar la versión de Element Plus cuando usas un CDN. Por favor, refiérase a [unpkg.com ](https://unpkg.com ) para más información.
2020-08-13 15:18:26 +08:00
### Hello world
2020-09-16 10:42:23 +08:00
Si esta usando un CDN, una página con Hello-World es fácil con Element Plus. [Online Demo ](https://codepen.io/ziyoung/pen/rRKYpd )
2020-08-13 15:18:26 +08:00
< iframe height = "265" style = "width: 100%;" scrolling = "no" title = "Element demo" src = "//codepen.io/ziyoung/embed/rRKYpd/?height=265&theme-id=light&default-tab=html,result" frameborder = "no" allowtransparency = "true" allowfullscreen = "true" >
See the Pen < a href = 'https://codepen.io/ziyoung/pen/rRKYpd/' > Element demo< / a > by hetech
(< a href = 'https://codepen.io/ziyoung' > @ziyoung< / a > ) on < a href = 'https://codepen.io' > CodePen< / a > .
< / iframe >
Si esta usando npm y desea combinarlo con webpack, por favor continué a la siguiente página: [Quick Start ](/#/es/component/quickstart )