36 lines
1.4 KiB
Markdown
36 lines
1.4 KiB
Markdown
|
## Installation
|
||
|
|
||
|
### NPM
|
||
|
|
||
|
Installer Element via npm est recommandé, il fonctionne parfaitement avec [webpack](https://webpack.js.org/).
|
||
|
|
||
|
```shell
|
||
|
npm i element-ui -S
|
||
|
```
|
||
|
|
||
|
### CDN
|
||
|
|
||
|
Obtenez la dernière version via [unpkg.com/element-ui](https://unpkg.com/element-ui/), et importez le JavaScript et le CSS dans votre page.
|
||
|
|
||
|
```html
|
||
|
<!-- import du CSS -->
|
||
|
<link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css">
|
||
|
<!-- import du JavaScript -->
|
||
|
<script src="https://unpkg.com/element-ui/lib/index.js"></script>
|
||
|
```
|
||
|
|
||
|
:::tip
|
||
|
Il est recommandé de fixer la version d'Element 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 ([démo en ligne](https://codepen.io/ziyoung/pen/rRKYpd)).
|
||
|
|
||
|
<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" 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 vous utilisez npm et souhaitez ajouter webpack, continuez sur la page suivante: [Démarrer](/#/fr-FR/component/quickstart).
|