logo头像

aferica

VsCode配置Vue模板

本文于1662天之前发表,文中内容可能已经过时。

VS Code拥有很多特别适合和方便的功能,自定义文件模板就是其中之一,本文中主要记录Vue的模板

创建模板步骤

  • 点击VS Code左下角设置按钮,选择用户代码片段
    20190620115042.png
  • 选择新建全局代码片段,输入名称,例如vue
    20190620115230.png
  • 编辑文件即可

Vue页面代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"Print to console": {
"prefix": "vue",
"body": [
"<template>",
" <div id=\"page\"></div>",
"</template>",
"",
"<script>",
"export default {",
" name: 'page',",
" data () {",
" return {",
" }",
" },",
"",
" components: {},",
"",
" computed: {},",
"",
" mounted () {},",
"",
" methods: {}",
"}",
"",
"</script>",
"<style scoped>",
"</style>",
""
],
"description": "vue模板"
}
}

Vue组件代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"Print to console": {
"prefix": "vue-component",
"body": [
"<template>",
" <div id=\"component\"></div>",
"</template>",
"",
"<script>",
"export default {",
" name: 'component',",
" data () {",
" return {",
" }",
" },",
" props: {",
" value: {",
" type: Object,",
" default () {",
" return {}",
" }",
" }",
" },",
"",
" computed: {},",
"",
" methods: {}",
"}",
"",
"</script>",
"<style scoped>",
"</style>",
""
],
"description": "vue组件模板"
}
}
微信打赏

你的赞赏是对我最大的鼓励