File tree 4 files changed +18
-3
lines changed
4 files changed +18
-3
lines changed Original file line number Diff line number Diff line change 1
- # Change Log
1
+ # Changelog
2
2
3
3
All notable changes to the "vue-vscode-snippets" extension will be documented in this file.
4
4
5
5
Check [ Keep a Changelog] ( http://keepachangelog.com/ ) for recommendations on how to structure this file.
6
6
7
- ## 2.0.9
7
+ ## 2.1.0
8
+
9
+ - Further Vue 3 Composition API support
10
+ - Adds in Emit
11
+ - Adds in named slot
12
+ - Better TypeScript support
13
+ - Removes increment/decrement
14
+ - Updates gsap
15
+
16
+ ## 2.0.0
8
17
9
18
- Vue 3 Composition API support
10
19
Original file line number Diff line number Diff line change @@ -54,6 +54,7 @@ You can enable tab completion (recommended) by opening `Code > Preferences > Set
54
54
| ` vmodel ` | Semantic v-model directive |
55
55
| ` vmodel-num ` | Semantic v-model number directive |
56
56
| ` von ` | v-on click handler with arguments |
57
+ | ` vslot-named ` | Named slot |
57
58
| ` vel-props ` | Component element with props |
58
59
| ` vsrc ` | Image src binding |
59
60
| ` vstyle ` | Inline style binding |
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.0 .0" ,
6
+ "version" : " 2.1 .0" ,
7
7
"publisher" : " sdras" ,
8
8
"engines" : {
9
9
"vscode" : " ^1.14.0"
Original file line number Diff line number Diff line change 30
30
"body" : [" <${1:component} :${1:propName}=\" ${0}\" ></${1:component}>" ],
31
31
"description" : " component element with props"
32
32
},
33
+ "Vue Named Slot" : {
34
+ "prefix" : " vslot-named" ,
35
+ "body" : [" <template v-slot:${0:name}>${1:defaultcontent}</template>" ],
36
+ "description" : " named slot"
37
+ },
33
38
"Vue Image Source Binding" : {
34
39
"prefix" : " vsrc" ,
35
40
"body" : [
You can’t perform that action at this time.
0 commit comments