feat(web-stack): upgrade Vue Router to 4.4 (#7850)

- Upgrade `vue-router` to `4.4` and `unplugin-vue-router` to `0.10`
- Disable `no-undef` ESLint rule since it's already handled by TypeScript ESLint
This commit is contained in:
Thierry Goettelmann
2024-07-22 17:01:04 +02:00
committed by GitHub
parent a97d55c53c
commit 9a811d7f1e
8 changed files with 104 additions and 185 deletions

View File

@@ -103,6 +103,7 @@ module.exports = {
'n/no-missing-import': 'off', // using 'import' plugin instead, to support TS aliases
'no-redeclare': 'off', // automatically checked by the TypeScript compiler
'no-dupe-class-members': 'off', // automatically checked by the TypeScript compiler
'no-undef': 'off', // automatically checked by the TypeScript compiler
'@typescript-eslint/no-explicit-any': 'off',
'vue/multi-word-component-names': 'off',
// Vue 3 - Strongly Recommended