Skip to content

Commit

Permalink
fix: import/order (#579)
Browse files Browse the repository at this point in the history
* fix: import/order

* fix: vue/no-setup-props-destructure
  • Loading branch information
liweijie0812 authored Aug 2, 2023
1 parent e1b0b95 commit 6a4ffa9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"eslint": "^8.45.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-vue": "^9.15.1",
Expand Down
2 changes: 1 addition & 1 deletion src/pages/list/card/components/DialogForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ const props = defineProps({
});
const formVisible = ref(false);
const formData = ref(props.data);
const formData = ref();
const textareaValue = ref('');
const onSubmit = ({ validateResult, firstError }: SubmitContext<Data>) => {
Expand Down
3 changes: 2 additions & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import path from 'node:path';

import vue from '@vitejs/plugin-vue';
import vueJsx from '@vitejs/plugin-vue-jsx';
import path from 'path';
import { ConfigEnv, loadEnv, UserConfig } from 'vite';
import { viteMockServe } from 'vite-plugin-mock';
import svgLoader from 'vite-svg-loader';
Expand Down

0 comments on commit 6a4ffa9

Please sign in to comment.