2020-08-13 15:18:26 +08:00
## Installation
### NPM
2020-09-16 10:42:23 +08:00
Installer Element Plus via npm est recommandé, il fonctionne parfaitement avec [webpack ](https://webpack.js.org/ ).
2020-08-13 15:18:26 +08:00
```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
Obtenez la dernière version via [unpkg.com/element-plus ](https://unpkg.com/element-plus/ ), et importez le JavaScript et le CSS dans votre page.
2020-08-13 15:18:26 +08:00
```html
<!-- import du 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 du 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
Il est recommandé de fixer la version d'Element Plus lors de l'utilisation du CDN. Référez-vous à [unpkg.com ](https://unpkg.com ) pour plus d'informations.
2020-08-13 15:18:26 +08:00
:::
### Hello world
2020-09-16 10:42:23 +08:00
Si vous utilisez un CDN, une page hello-world peut être obtenue facilement avec Element Plus ([démo en ligne](https://codepen.io/ziyoung/pen/rRKYpd)).
2020-08-13 15:18:26 +08:00
2020-10-16 11:14:34 +08:00
< iframe height = "265" style = "width: 100%;" scrolling = "no" title = "Element Plus demo" src = "//codepen.io/ziyoung/embed/rRKYpd/?height=265&theme-id=light&default-tab=html" frameborder = "no" allowtransparency = "true" allowfullscreen = "true" >
See the Pen < a href = 'https://codepen.io/ziyoung/pen/rRKYpd/' > Element Plus demo< / a > by hetech
2020-08-13 15:18:26 +08:00
(< a href = 'https://codepen.io/ziyoung' > @ziyoung< / a > ) on < a href = 'https://codepen.io' > CodePen< / a > .
< / iframe >
Si vous utilisez npm et souhaitez ajouter webpack, continuez sur la page suivante: [Démarrer ](/#/fr-FR/component/quickstart ).