Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: date picker #554

Closed
wants to merge 15 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ module.exports = {

rules: {
'vue/no-template-shadow': 'off',
'no-console': 'warn'
'no-console': 'warn',
'unused-imports/no-unused-vars': 'off',
'@typescript-eslint/no-unused-vars': 'warn'
}
}
5 changes: 0 additions & 5 deletions client.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,3 @@
/// <reference types="unplugin-icons/types/vue3" />

// this file contains public types which are exposed to external modules

declare module 'v-calendar' {
export * from 'v-calendar/dist/types/src/index.d.ts'
export { default } from 'v-calendar/dist/types/src/index.d.ts'
}
2 changes: 1 addition & 1 deletion config/vite.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,11 @@ export const baseConfig = {
'fuse.js',
'lodash-es',
'markdown-it',
'maska',
'normalize.css',
'ofetch',
'pinia',
'qs',
'v-calendar',
'vue-router',
'vue'
]
Expand Down
Loading
Loading