Skip to content
Merged
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
2 changes: 1 addition & 1 deletion src/assets/css/form.scss
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ body {
}

.el-form-item.checkbox {
@apply self-start shadow-none #{!important};
@apply self-start shadow-none mt-[9px] #{!important};
}
.el-checkbox__inner {
@apply rounded h-4 w-4 border-0 shadow #{!important};
Expand Down
3 changes: 3 additions & 0 deletions src/modules/profile/views/index.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<template>
<div>test</div>
</template>
9 changes: 9 additions & 0 deletions src/router/routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ const Button = () => import('modules/buttons/views/index.vue')
const Typography = () => import('modules/typography/views/index.vue')
const Card = () => import('modules/cards/views/index.vue')
const Icons = () => import('modules/icons/views/index.vue')
const Profile = () => import('modules/profile/views/index.vue')
const routes = [
{
path: '/',
Expand Down Expand Up @@ -119,6 +120,14 @@ const routes = [
requiresAuth: false,
},
},
{
path: '/profile',
component: Profile,
name: 'profile',
meta: {
requiresAuth: false,
},
},
{
path: '/:pathMatch(.*)*',
component: NotFound,
Expand Down