Skip to content

Commit a2ef33c

Browse files
committed
✨ VueJS added to the summary
1 parent 399c8d6 commit a2ef33c

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ We accept recommendations from all enthusiastic who care about the quality. The
1212
* [Git](../git/)
1313
* [Java](../java/)
1414
* [PHP](../php/)
15+
* [VueJS](../vuejs/)
1516

1617
## Contributions
1718
Help us create the better conventions with your contributions. Simply read our [Contribution Guide](../meta/contribution-guide.html) and get started!

SUMMARY.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,13 @@
2828
* [Method Naming](php/method-naming.md)
2929
* [Variable Naming](php/variable-naming.md)
3030
* [Constant Naming](php/constant-naming.md)
31-
* [Namespaces Naming](php/namespaces-naming.md)
31+
* [Namespaces Naming](php/namespaces-naming.md)
32+
* [VueJS](vuejs/README.md)
33+
* [Components Naming](vuejs/components-naming.md)
34+
* [Smart vs Dumb components Naming](vuejs/smart-dumb-naming.md)
35+
* [Single instance components Naming](vuejs/single-instance-components.md)
36+
* [Components files Naming](vuejs/components-files-naming.md)
37+
* [Templates components Naming](vuejs/templates-components-naming.md)
38+
* [Constants naming](vuejs/constants-naming.md)
39+
* [Method Naming](vuejs/method-naming.md)
40+
* [Variable Naming](vuejs/variable-naming.md)

vuejs/smart-dumb-naming.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Smart components sometimes called contrainer are the one that handles state chan
1212
- For example "SubmitButton", "UserDeleteButton", "IncrementButton"
1313
- Implements methods or are connected with the Vuex actions
1414

15-
```javascript
15+
```vue
1616
<template>
1717
<div class="increment-button" v-on:click="increment">
1818
<base-button>{{ number }} Increment</base-button>

0 commit comments

Comments
 (0)