Skip to content

ESLint

auto import를 사용하지 않는다면 ESLint에 vue-router/auto-routes를 알려야 합니다. eslint 설정에 다음 줄을 추가하세요:

json
{
  "settings": {
    "import/core-modules": ["vue-router/auto-routes"]
  }
}

definePage()

definePage()는 전역 매크로이므로 ESLint에 이를 알려야 합니다. eslint 설정에 다음 줄을 추가하세요:

json
{
  "globals": {
    "definePage": "readonly"
  }
}

모두를 위한 문서 한글화