Skip to content

Commit

Permalink
Update component reference
Browse files Browse the repository at this point in the history
  • Loading branch information
lcharette committed Dec 6, 2024
1 parent 87015d4 commit ca6410b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/assets/layouts/LayoutDashboard.vue
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<script setup lang="ts">
import NavBar from '../components/NavBar.vue'
import FooterContent from '../components/FooterContent.vue'
import AdminSidebarMenuItems from '@userfrosting/sprinkle-admin/components/SidebarMenuItems.vue'
import { SidebarMenuItems } from '@userfrosting/sprinkle-admin/components'
</script>

<template>
<NavBar />
<UFSideBar>
<UFSideBarLabel label="NAVIGATION" />
<AdminSidebarMenuItems />
<SidebarMenuItems />
<UFSideBarItem :to="{ name: 'test' }" faIcon="person-digging" label="Test" />
</UFSideBar>
<UFMainContent>
Expand Down
2 changes: 1 addition & 1 deletion app/assets/router/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const router = createRouter({
{
path: '',
name: 'test',
component: () => import('../views/TestView.vue'),
component: () => import('../views/TestView.vue')
},
{
path: 't/:slug',
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"typescript": "^5.4.5",
"vite": "^5.2.8",
"vue-loader": "^17.2.2",
"vue-tsc": "^2.0.11",
"vue-tsc": "^2.1.10",
"webpack-notifier": "^1.15.0"
},
"scripts": {
Expand Down

0 comments on commit ca6410b

Please sign in to comment.