File tree 3 files changed +12
-2
lines changed
3 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ We accept recommendations from all enthusiastic who care about the quality. The
12
12
* [ Git] ( ../git/ )
13
13
* [ Java] ( ../java/ )
14
14
* [ PHP] ( ../php/ )
15
+ * [ VueJS] ( ../vuejs/ )
15
16
16
17
## Contributions
17
18
Help us create the better conventions with your contributions. Simply read our [ Contribution Guide] ( ../meta/contribution-guide.html ) and get started!
Original file line number Diff line number Diff line change 28
28
* [ Method Naming] ( php/method-naming.md )
29
29
* [ Variable Naming] ( php/variable-naming.md )
30
30
* [ 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 )
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ Smart components sometimes called contrainer are the one that handles state chan
12
12
- For example "SubmitButton", "UserDeleteButton", "IncrementButton"
13
13
- Implements methods or are connected with the Vuex actions
14
14
15
- ``` javascript
15
+ ``` vue
16
16
<template>
17
17
<div class="increment-button" v-on:click="increment">
18
18
<base-button>{{ number }} Increment</base-button>
You can’t perform that action at this time.
0 commit comments