File tree 1 file changed +9
-8
lines changed
1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -2,12 +2,12 @@ snippet scaffold
2
2
options head
3
3
abbr Scaffold <template> <script> and <style>
4
4
<template>
5
- ${0}
5
+ ${0}
6
6
</template>
7
7
8
8
<script>
9
9
export default {
10
-
10
+ }
11
11
</script>
12
12
13
13
<style>
@@ -18,32 +18,33 @@ snippet template_with_html
18
18
options head
19
19
abbr Scaffold <template> with html
20
20
<template>
21
- ${0}
21
+ ${0}
22
22
</template>
23
23
24
24
snippet template_with_pug
25
25
options head
26
26
abbr Scaffold <template> with pug
27
27
<template lang="pug">
28
- ${0}
28
+ ${0}
29
29
</template>
30
30
31
31
snippet script_with_JavaScript
32
32
options head
33
33
abbr Scaffold <script> with JavaScript
34
34
<script>
35
35
export default {
36
- ${0}
36
+ ${0}
37
37
}
38
38
</script>
39
39
40
40
snippet script_with_TypeScript
41
41
options head
42
42
abbr Scaffold <script> with TypeScript
43
43
<script lang="ts">
44
- export default {
45
- ${0}
46
- }
44
+ import Vue from 'vue'
45
+ export default Vue.extend({
46
+ ${0}
47
+ })
47
48
</script>
48
49
49
50
snippet style_with_CSS
You can’t perform that action at this time.
0 commit comments