summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2018-03-12 12:37:05 +0000
committerPhil Hughes <me@iamphill.com>2018-03-12 12:37:05 +0000
commit1748013152613ab611da2c9fde9e230e6dc9d8d7 (patch)
tree8e5f7a4068fd5e1df07a9bbfc7aa8cd07bd2bfe0
parent95a1ac1404ef76424bd584e4071f002a35dfa050 (diff)
parent4a7d6230654abbafc7134c34abd7b2d2ff41ba4a (diff)
downloadgitlab-ce-1748013152613ab611da2c9fde9e230e6dc9d8d7.tar.gz
Merge branch 'docs-vue-components' into 'master'
Updates file extensions on Vue docs See merge request gitlab-org/gitlab-ce!17684
-rw-r--r--doc/development/fe_guide/vue.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/development/fe_guide/vue.md b/doc/development/fe_guide/vue.md
index 093a3ca4407..c1170fa3b13 100644
--- a/doc/development/fe_guide/vue.md
+++ b/doc/development/fe_guide/vue.md
@@ -53,13 +53,13 @@ you can find a clear separation of concerns:
```
new_feature
├── components
-│ └── component.js.es6
+│ └── component.vue
│ └── ...
-├── store
-│ └── new_feature_store.js.es6
-├── service
-│ └── new_feature_service.js.es6
-├── new_feature_bundle.js.es6
+├── stores
+│ └── new_feature_store.js
+├── services
+│ └── new_feature_service.js
+├── new_feature_bundle.js
```
_For consistency purposes, we recommend you to follow the same structure._