vs-code 配置
vs-code 快键键
- 命令面板 ctrl+shift+p
vs-code 相关插件
- AutoFileName
- Chinese (Simplified) Language Pack for Visual Studio Code
- markdownlint
- npm
- Npm Intellisense
- Vetur
vue.json 代码片段配置,通过vue 快速生成vue文件中的相关结构
{
"Print to console": {
"prefix": "vue",
"body": [
"<!-- 模版 -->",
"<template>",
" <div></div>",
"</template>",
"",
"<!-- 脚本 -->",
"<script>",
"export default {",
" data () {",
" return {",
" };",
" },",
"",
" components: {},",
"",
" computed: {},",
"",
" // mounted: {},",
"",
" methods: {}",
"}",
"",
"// 样式",
"</script>",
"<style scoped>",
"</style>"
],
"description": "Log output to console"
}
}
博客所有内容仅供自已学习和学习过程的记录,如有侵权,请联系我删除!!!