Skip to content

Commit 8b99118

Browse files
committed
fix(vuetify): trying to integrate lib in vue2 with vuetify
1 parent a14d0ce commit 8b99118

File tree

10 files changed

+767
-16
lines changed

10 files changed

+767
-16
lines changed

src/useDatatableUrlSync.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -314,6 +314,7 @@ export default function useDatatableUrlSync(form: GenericDictionnary, fetchDatas
314314
initializeFromRouter(true)
315315

316316
return {
317+
vuetifyOptions,
317318
loading
318319
}
319320
}

vue2-example/.eslintrc.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,16 @@ module.exports = {
55
},
66
'extends': [
77
'plugin:vue/essential',
8-
'eslint:recommended'
8+
'eslint:recommended',
9+
'@vue/typescript/recommended'
910
],
1011
parserOptions: {
11-
parser: 'babel-eslint'
12+
parser: '@typescript-eslint/parser'
1213
},
1314
rules: {
1415
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
15-
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off'
16+
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
17+
"@typescript-eslint/camelcase": "off",
18+
"@typescript-eslint/no-explicit-any": "off"
1619
}
1720
}

0 commit comments

Comments
 (0)