简体中文
Appearance
Complete guide to
Mastering Pinia
written by its creator
The official
Vue.js Certification
Get certified!
d842b6f
如果你不使用自动导入,你需要告诉 ESLint 关于 vue-router/auto-routes 的信息。将这些行添加到你的 eslint 配置中:
vue-router/auto-routes
{ "settings": { "import/core-modules": ["vue-router/auto-routes"] } }
definePage()
由于 definePage() 是一个全局宏,你需要告诉 ESLint 关于它的信息。将这些行添加到你的 eslint 配置中:
{ "globals": { "definePage": "readonly" } }