File tree 4 files changed +15
-11
lines changed
4 files changed +15
-11
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.4
6
+
7
+ - Fix bug: put emit into template instead of script
8
+
5
9
## 2.1.3
6
10
7
11
- Add in boilerplate to use Composition API inside Options API
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.3 " ,
6
+ "version" : " 2.1.4 " ,
7
7
"publisher" : " sdras" ,
8
8
"engines" : {
9
9
"vscode" : " ^1.14.0"
Original file line number Diff line number Diff line change 98
98
],
99
99
"description" : " Vue Props with Default"
100
100
},
101
- "Vue Emit from Child" : {
102
- "prefix" : " vemit-child" ,
103
- "body" : [" @change=\" $emit('change', $event.target.value)\" " ],
104
- "description" : " Vue Emit from Child Component"
105
- },
106
- "Vue Emit to Parent" : {
107
- "prefix" : " vemit-parent" ,
108
- "body" : [" @change=\" ${1:foo} = $event\" " ],
109
- "description" : " Vue Emit to Parent Component"
110
- },
111
101
"Vue Import File" : {
112
102
"prefix" : " vimport" ,
113
103
"body" : [" import ${1:New} from '@/components/${1:New}.vue';" ],
Original file line number Diff line number Diff line change 73
73
],
74
74
"description" : " vue multiple conditional class bindings"
75
75
},
76
+ "Vue Emit from Child" : {
77
+ "prefix" : " vemit-child" ,
78
+ "body" : [" @change=\" $emit('change', $event.target.value)\" " ],
79
+ "description" : " Vue Emit from Child Component"
80
+ },
81
+ "Vue Emit to Parent" : {
82
+ "prefix" : " vemit-parent" ,
83
+ "body" : [" @change=\" ${1:foo} = $event\" " ],
84
+ "description" : " Vue Emit to Parent Component"
85
+ },
76
86
"Vue Transition Component with JavaScript Hooks" : {
77
87
"prefix" : " vanim" ,
78
88
"body" : [
You can’t perform that action at this time.
0 commit comments