Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bineenasc committed Dec 24, 2024
1 parent 7df089f commit 6c77ffb
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 1 deletion.
1 change: 1 addition & 0 deletions web/.aeria-ui/components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ export {}

declare module '@vue/runtime-core' {
export interface GlobalComponents {
AeriaCrud: typeof import('@aeria-ui/ui')['AeriaCrud']
AeriaIcon: typeof import('@aeria-ui/ui')['AeriaIcon']
AeriaMain: typeof import('@aeria-ui/ui')['AeriaMain']
NoResults: typeof import('./../src/components/no-results.vue')['default']
Expand Down
1 change: 1 addition & 0 deletions web/.aeria-ui/typed-router.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,6 @@ declare module 'vue-router/auto-routes' {
export interface RouteNamedMap {
'/dashboard': RouteRecordInfo<'/dashboard', '/dashboard', Record<never, never>, Record<never, never>>,
'/dashboard/': RouteRecordInfo<'/dashboard/', '/dashboard', Record<never, never>, Record<never, never>>,
'/dashboard/employee': RouteRecordInfo<'/dashboard/employee', '/dashboard/employee', Record<never, never>, Record<never, never>>,
}
}
15 changes: 15 additions & 0 deletions web/src/pages/dashboard/employee.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<script setup lang="ts">
definePage({
meta: {
title: 'employee',
icon: 'gauge',
},
});
</script>

<template>
<aeria-crud collection="employee">

</aeria-crud>
</template>
2 changes: 1 addition & 1 deletion web/src/style/main.less
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
@import '@aeria-ui/ui/themes/animate.less';
@import './reset.less';

@brand-color: #e97451;
@brand-color: #231899;

main {
.animate();
Expand Down
Binary file modified web/static/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 6c77ffb

Please sign in to comment.