diff options
author | Filipa Lacerda <filipa@gitlab.com> | 2018-03-12 10:08:58 +0000 |
---|---|---|
committer | Filipa Lacerda <filipa@gitlab.com> | 2018-03-12 10:08:58 +0000 |
commit | 4a7d6230654abbafc7134c34abd7b2d2ff41ba4a (patch) | |
tree | ef430d1284105f321a83682b34b2b26e25e4bac6 /doc/development | |
parent | afd2d381119c3778140c3dd63c7ef24ecdb4c62e (diff) | |
download | gitlab-ce-4a7d6230654abbafc7134c34abd7b2d2ff41ba4a.tar.gz |
Updates file extensions on Vue docs
Diffstat (limited to 'doc/development')
-rw-r--r-- | doc/development/fe_guide/vue.md | 12 |
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._ |