mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-11-21 14:13:36 +08:00
添加vscode快速生成vue3.0代码片段文档
This commit is contained in:
BIN
doc/docs/zh/plugs/images/snip.gif
Normal file
BIN
doc/docs/zh/plugs/images/snip.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 252 KiB |
@@ -1,4 +1,36 @@
|
||||
## 1. hyper
|
||||
## 1. VsCode插件
|
||||
|
||||
请安装TSLint、Vetur、vscode-icons、ES7 React
|
||||
|
||||
## 2. VsCode快速生成代码片段
|
||||
Ctrl+Shift+P 选中配置用户代码片段 搜索vue.json,将下面代码复制进去,在.vue文件输入vue回车即可
|
||||
```
|
||||
{
|
||||
"Vue3.0快速生成模板": {
|
||||
"prefix": "Vue3.0",
|
||||
"body": [
|
||||
"<template>",
|
||||
"\t<div>\n",
|
||||
"\t</div>",
|
||||
"</template>\n",
|
||||
"<script lang='ts'>",
|
||||
"export default {",
|
||||
"\tsetup(){",
|
||||
"\t\treturn{\n\n\t\t}",
|
||||
"\t},",
|
||||
"}",
|
||||
"</script>\n",
|
||||
"<style scoped>\n",
|
||||
"</style>",
|
||||
"$2"
|
||||
],
|
||||
"description": "Vue3.0"
|
||||
}
|
||||
}
|
||||
```
|
||||

|
||||
|
||||
## 3. hyper
|
||||
|
||||

|
||||
|
||||
|
||||
Reference in New Issue
Block a user