diff --git a/src/assets/sass/_report-box.scss b/src/assets/sass/_report-box.scss index b03b668..c202bdd 100644 --- a/src/assets/sass/_report-box.scss +++ b/src/assets/sass/_report-box.scss @@ -1,5 +1,5 @@ .report-box { - @apply relative; + @apply relative rounded-3xl; .report-box__icon { width: 28px; diff --git a/src/router/index.js b/src/router/index.js index e1cbf8a..80cbf08 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -5,7 +5,7 @@ Vue.use(VueRouter); const routes = [ { path: "/", - component: () => import('@/layouts/SideMenu'), + component: () => import(/* webpackChunkName: "main" */ '@/layouts/SideMenu'), children: [ { path: "/", @@ -264,6 +264,11 @@ const routes = [ } ] }, + { + path: "/test", + name: "test", + component: () => import('@/views/Inbox') + }, { path: "/login", name: "login", diff --git a/src/views/Dashboard.vue b/src/views/Dashboard.vue index 5eade21..af4ca2a 100644 --- a/src/views/Dashboard.vue +++ b/src/views/Dashboard.vue @@ -4,13 +4,13 @@