Skip to content

Commit

Permalink
fix(projects): fix register name, CodeLogin => Register (#478)
Browse files Browse the repository at this point in the history
  • Loading branch information
m-xlsea committed Jun 6, 2024
1 parent e75fd73 commit ddf3823
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default defineConfig(
'vue/multi-word-component-names': [
'warn',
{
ignores: ['index', 'App', '[id]', '[url]']
ignores: ['index', 'App', 'Register', '[id]', '[url]']
}
],
'vue/component-name-in-template-casing': [
Expand Down
2 changes: 1 addition & 1 deletion src/views/_builtin/login/modules/register.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { useFormRules, useNaiveForm } from '@/hooks/common/form';
import { useCaptcha } from '@/hooks/business/captcha';
defineOptions({
name: 'CodeLogin'
name: 'Register'
});
const { toggleLoginModule } = useRouterPush();
Expand Down

0 comments on commit ddf3823

Please sign in to comment.