File tree Expand file tree Collapse file tree 3 files changed +10
-7
lines changed Expand file tree Collapse file tree 3 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to the "vue-vscode-snippets" extension will be documented in this file.
4
4
5
+ ## 2.1.5
6
+
7
+ - Fix bug: fix dollar signs in emit
8
+
5
9
## 2.1.4
6
10
7
11
- Fix bug: put emit into template instead of script
Original file line number Diff line number Diff line change 3
3
"displayName" : " Vue VSCode Snippets" ,
4
4
"description" : " Snippets that will supercharge your Vue workflow" ,
5
5
"icon" : " images/vue-logo.png" ,
6
- "version" : " 2.1.4 " ,
6
+ "version" : " 2.1.5 " ,
7
7
"publisher" : " sdras" ,
8
8
"engines" : {
9
9
"vscode" : " ^1.14.0"
30
30
" Snippets"
31
31
],
32
32
"contributes" : {
33
- "snippets" : [
34
- {
33
+ "snippets" : [{
35
34
"language" : " vue" ,
36
35
"path" : " ./snippets/vue.json"
37
36
},
85
84
}
86
85
]
87
86
}
88
- }
87
+ }
Original file line number Diff line number Diff line change 75
75
},
76
76
"Vue Emit from Child" : {
77
77
"prefix" : " vemit-child" ,
78
- "body" : [" @change=\" $emit('change', $event.target.value)\" " ],
78
+ "body" : [" @change=\" $$ emit('change', $ $event.target.value)\" " ],
79
79
"description" : " Vue Emit from Child Component"
80
80
},
81
81
"Vue Emit to Parent" : {
82
82
"prefix" : " vemit-parent" ,
83
- "body" : [" @change=\" ${1:foo} = $event\" " ],
83
+ "body" : [" @change=\" ${1:foo} = $$ event\" " ],
84
84
"description" : " Vue Emit to Parent Component"
85
85
},
86
86
"Vue Transition Component with JavaScript Hooks" : {
123
123
"body" : [" <router-link to=\" ${1:path}\" >${2:LinkTitle}</router-link>" ],
124
124
"description" : " Path routing link"
125
125
}
126
- }
126
+ }
You can’t perform that action at this time.
0 commit comments