{
  "Basic Vue Code": {
    "prefix": "vue-basic",
    "body": [
      "<template>\n\t<div>\n\t</div>\n</template>",
      "",
      "<script>",
      "export default {",
      "\tcomponents: {},",
      "\tdata() {\n\t\treturn {}\n\t},",
      "\tname: '${TM_FILENAME/(.*)\\..+$/$1/}$1',",
      "\tsetup() {},",
      "\tcreate() {},",
      "\tmounted() {},",
      "\tunmounted() {},",
      "\tmethods: {}",
      "}",
      "</script>",
      "",
      "<style scoped>\n</style>"
    ],
    "description": "Vue snippet"
  }
}

Vue\project\.prettierrc

{
  "semi": false,
  "bracketSpacing": true,
  "singleQuote": true,
  "useTabs": false,
  "trailingComma": "none",
  "printWidth": 200
}
 
Vue\project\.eslintrc.js || Vue\project\package.json
  rules: {
    'space-before-function-paren': 'off'
  }

'vue : 이 시스템에서 스크립트를 실행할 수 없으므로 ~' 라는 오류 발생시,

PowerShell 을 관리자 권한으로 실행 후,

Get-ExecutionPolicy 명령어로 권한 확인(Restricted)

Set-ExecutionPolicy  명령어로 권한 변경(RemoteSigned)