|
1 | 1 | { |
2 | | - "Vue Single File Component": { |
3 | | - "prefix": "vbase", |
4 | | - "body": [ |
5 | | - "<template>", |
6 | | - "\t<div>", |
7 | | - "", |
8 | | - "\t</div>", |
9 | | - "</template>", |
10 | | - "", |
11 | | - "<script>", |
12 | | - "\texport default {", |
13 | | - "\t\t${0}", |
14 | | - "\t}", |
15 | | - "</script>", |
16 | | - "", |
17 | | - "<style lang=\"scss\" scoped>", |
18 | | - "", |
19 | | - "</style>" |
20 | | - ], |
21 | | - "description": "Base for Vue File" |
22 | | - }, |
23 | | - "Vue Single File Component with Css": { |
24 | | - "prefix": "vbase-css", |
25 | | - "body": [ |
26 | | - "<template>", |
27 | | - "\t<div>", |
28 | | - "", |
29 | | - "\t</div>", |
30 | | - "</template>", |
31 | | - "", |
32 | | - "<script>", |
33 | | - "\texport default {", |
34 | | - "\t\t${0}", |
35 | | - "\t}", |
36 | | - "</script>", |
37 | | - "", |
38 | | - "<style scoped>", |
39 | | - "", |
40 | | - "</style>" |
41 | | - ], |
42 | | - "description": "Base for Vue File" |
43 | | - }, |
44 | | - "Vue Single File Component with Typescript": { |
45 | | - "prefix": "vbase-ts", |
46 | | - "body": [ |
47 | | - "<template>", |
48 | | - "\t<div>", |
49 | | - "", |
50 | | - "\t</div>", |
51 | | - "</template>", |
52 | | - "", |
53 | | - "<script lang=\"ts\">", |
54 | | - "\timport Vue from 'vue'", |
55 | | - "", |
56 | | - "\texport default Vue.extend({", |
57 | | - "\t\t${0}", |
58 | | - "\t})", |
59 | | - "</script>", |
60 | | - "", |
61 | | - "<style scoped>", |
62 | | - "", |
63 | | - "</style>" |
64 | | - ], |
65 | | - "description": "Base for Vue File with Typescript" |
66 | | - }, |
67 | | - "Vue Single File Component with No Style": { |
| 2 | + "Vue Single File Component": { |
| 3 | + "prefix": "vbase", |
| 4 | + "body": [ |
| 5 | + "<template>", |
| 6 | + "\t<div>", |
| 7 | + "", |
| 8 | + "\t</div>", |
| 9 | + "</template>", |
| 10 | + "", |
| 11 | + "<script>", |
| 12 | + "\texport default {", |
| 13 | + "\t\t${0}", |
| 14 | + "\t}", |
| 15 | + "</script>", |
| 16 | + "", |
| 17 | + "<style lang=\"scss\" scoped>", |
| 18 | + "", |
| 19 | + "</style>" |
| 20 | + ], |
| 21 | + "description": "Base for Vue File with SCSS" |
| 22 | + }, |
| 23 | + "Vue Single File Component with postcss": { |
| 24 | + "prefix": "vbase-pcss", |
| 25 | + "body": [ |
| 26 | + "<template>", |
| 27 | + "\t<div>", |
| 28 | + "", |
| 29 | + "\t</div>", |
| 30 | + "</template>", |
| 31 | + "", |
| 32 | + "<script>", |
| 33 | + "\texport default {", |
| 34 | + "\t\t${0}", |
| 35 | + "\t}", |
| 36 | + "</script>", |
| 37 | + "", |
| 38 | + "<style lang=\"postcss\" scoped>", |
| 39 | + "", |
| 40 | + "</style>" |
| 41 | + ], |
| 42 | + "description": "Base for Vue File with PostCSS" |
| 43 | + }, |
| 44 | + "Vue Single File Component with Css": { |
| 45 | + "prefix": "vbase-css", |
| 46 | + "body": [ |
| 47 | + "<template>", |
| 48 | + "\t<div>", |
| 49 | + "", |
| 50 | + "\t</div>", |
| 51 | + "</template>", |
| 52 | + "", |
| 53 | + "<script>", |
| 54 | + "\texport default {", |
| 55 | + "\t\t${0}", |
| 56 | + "\t}", |
| 57 | + "</script>", |
| 58 | + "", |
| 59 | + "<style scoped>", |
| 60 | + "", |
| 61 | + "</style>" |
| 62 | + ], |
| 63 | + "description": "Base for Vue File with CSS" |
| 64 | + }, |
| 65 | + "Vue Single File Component with Typescript": { |
| 66 | + "prefix": "vbase-ts", |
| 67 | + "body": [ |
| 68 | + "<template>", |
| 69 | + "\t<div>", |
| 70 | + "", |
| 71 | + "\t</div>", |
| 72 | + "</template>", |
| 73 | + "", |
| 74 | + "<script lang=\"ts\">", |
| 75 | + "\timport Vue from 'vue'", |
| 76 | + "", |
| 77 | + "\texport default Vue.extend({", |
| 78 | + "\t\t${0}", |
| 79 | + "\t})", |
| 80 | + "</script>", |
| 81 | + "", |
| 82 | + "<style scoped>", |
| 83 | + "", |
| 84 | + "</style>" |
| 85 | + ], |
| 86 | + "description": "Base for Vue File with Typescript" |
| 87 | + }, |
| 88 | + "Vue Single File Component with No Style": { |
68 | 89 | "prefix": "vbase-ns", |
69 | 90 | "body": [ |
70 | 91 | "<template>", |
|
0 commit comments