Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorFilipa Lacerda <filipa@gitlab.com>2017-03-28 01:36:58 +0300
committerAlfredo Sumaran <alfredo@gitlab.com>2017-03-28 01:36:58 +0300
commit8913d27cf85f075881eede30198e8a4decb47c76 (patch)
tree66c4d14a71419a55554d260fe3a4008c44f44a90 /doc
parenta9b1a85bedb16298009a64aaf7bd321fb3da9be1 (diff)
Adds entry about kebab case props in documentation
Diffstat (limited to 'doc')
-rw-r--r--doc/development/fe_guide/style_guide_js.md15
1 files changed, 11 insertions, 4 deletions
diff --git a/doc/development/fe_guide/style_guide_js.md b/doc/development/fe_guide/style_guide_js.md
index 034cfe73d33..abd241c0bc8 100644
--- a/doc/development/fe_guide/style_guide_js.md
+++ b/doc/development/fe_guide/style_guide_js.md
@@ -200,7 +200,6 @@ See [our current .eslintrc][eslintrc] for specific rules and patterns.
#### Naming
- **Extensions**: Use `.vue` extension for Vue components.
- **Reference Naming**: Use PascalCase for Vue components and camelCase for their instances:
-
```javascript
// bad
import cardBoard from 'cardBoard';
@@ -218,15 +217,23 @@ See [our current .eslintrc][eslintrc] for specific rules and patterns.
cardBoard: CardBoard
};
```
-- **Props Naming**: Avoid using DOM component prop names.
+- **Props Naming:**
+- Avoid using DOM component prop names.
+- Use kebab-case instead of camelCase to provide props in templates.
```javascript
// bad
<component class="btn">
// good
- <component cssClass="btn">
- ```
+ <component css-class="btn">
+
+ // bad
+ <component myProp="prop" />
+
+ // good
+ <component my-prop="prop" />
+```
#### Alignment
- Follow these alignment styles for the template method: