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
|
|
|
|
Installer Element Plus via npm est recommandé, il fonctionne parfaitement avec [webpack](https://webpack.js.org/).
|
|
|
|
```shell
|
|
npm install element-plus --save
|
|
```
|
|
|
|
### CDN
|
|
|
|
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.
|
|
|
|
```html
|
|
<!-- import du CSS -->
|
|
<link rel="stylesheet" href="https://unpkg.com/element-plus/lib/theme-chalk/index.css">
|
|
<!-- import du JavaScript -->
|
|
<script src="https://unpkg.com/element-plus/lib/index.full.js"></script>
|
|
```
|
|
|
|
:::tip
|
|
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.
|
|
:::
|
|
|
|
### Hello world
|
|
|
|
Si vous utilisez un CDN, une page hello-world peut être obtenue facilement avec Element Plus ([démo en ligne](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>
|
|
|
|
Si vous utilisez npm et souhaitez ajouter webpack, continuez sur la page suivante: [Démarrer](/#/fr-FR/component/quickstart).
|