You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/en/installation.md
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,14 @@
1
1
# Installation
2
2
3
-
### Direct Download / CDN
3
+
### Téléchargement direct / CDN
4
4
5
5
[https://unpkg.com/vuex](https://unpkg.com/vuex)
6
6
7
7
<!--email_off-->
8
-
[Unpkg.com](https://unpkg.com)provides NPM-based CDN links. The above link will always point to the latest release on NPM. You can also use a specific version/tag via URLs like`https://unpkg.com/vuex@2.0.0`.
8
+
[Unpkg.com](https://unpkg.com)fournit des liens CDN basés sur NPM. Le lien ci-dessus pointera toujours vers la dernière release sur NPM. Vous pouvez aussi utiliser un tag ou une version spécifique comme`https://unpkg.com/vuex@2.0.0`.
9
9
<!--/email_off-->
10
10
11
-
Include`vuex`after Vue and it will install itself automatically:
11
+
Incluez`vuex`après Vue et l'installation sera automatique :
12
12
13
13
```html
14
14
<scriptsrc="/path/to/vue.js"></script>
@@ -27,7 +27,7 @@ npm install vuex --save
27
27
yarn add vuex
28
28
```
29
29
30
-
When used with a module system, you must explicitly install Vuex via `Vue.use()`:
30
+
Lorsque vous utilisez un système de modules, vous devez explicitement installer le router via `Vue.use()`:
31
31
32
32
```js
33
33
importVuefrom'vue'
@@ -36,12 +36,12 @@ import Vuex from 'vuex'
36
36
Vue.use(Vuex)
37
37
```
38
38
39
-
You don't need to do this when using global script tags.
39
+
Il n'est pas nécessaire de faire ceci lorsque vous utilisez des balises de script globales.
40
40
41
-
### Dev Build
41
+
### Environnement de dev
42
42
43
-
You will have to clone directly from GitHub and build`vuex`yourself if
44
-
you want to use the latest dev build.
43
+
Vous devrez cloner directement depuis GitHub et compiler`vuex`vous-même si
44
+
vous souhaitez utiliser la dernière version de dev.
0 commit comments