Skip to content

Commit e3ba109

Browse files
committed
adapt for working with the vue 3 example
1 parent 6626fa5 commit e3ba109

File tree

13 files changed

+272
-228
lines changed

13 files changed

+272
-228
lines changed

vue2-example/package-lock.json

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vue2-example/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"@vue/composition-api": "^1.0.0-rc.5",
1212
"core-js": "^3.6.5",
1313
"vue": "^2.6.11",
14-
"vue-datatable-url-sync": "^1.0.3",
14+
"vue-datatable-url-sync": "^1.0.5",
1515
"vue-router": "^3.5.1",
1616
"vuetify": "^2.4.0"
1717
},

vue3-example/.eslintrc.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ module.exports = {
1313
},
1414
rules: {
1515
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
16-
'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",
19+
"@typescript-eslint/no-use-before-define": "off"
1720
}
1821
}

0 commit comments

Comments
 (0)