This commit is contained in:
2024-04-15 06:43:19 +02:00
parent 424e62b2c5
commit 12279da613
7 changed files with 1829 additions and 2 deletions

BIN
.DS_Store vendored

Binary file not shown.

View File

@@ -8,7 +8,7 @@
"@inertiajs/inertia": "^0.11.0",
"@inertiajs/inertia-vue3": "^0.6.0",
"@inertiajs/progress": "^0.2.7",
"@tailwindcss/forms": "^0.5.2",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.2",
"@vitejs/plugin-vue": "^2.3.3",
"autoprefixer": "^10.4.7",

1821
pnpm-lock.yaml generated Normal file

File diff suppressed because it is too large Load Diff

BIN
resources/.DS_Store vendored

Binary file not shown.

BIN
resources/js/.DS_Store vendored

Binary file not shown.

View File

@@ -222,7 +222,7 @@ onMounted(fetch_menu);
<fwb-navbar class="px-0">
<template #logo>
<fwb-navbar-logo alt="IKEA price comparison" :image-url="LogoIkea" :link="route('root')">
IKEA price comparison
<h1>IKEA price comparison</h1>
</fwb-navbar-logo>
</template>

View File

@@ -5,12 +5,17 @@ import Icon from '@/Components/Icon.vue';
import Builder from '@/Components/DataTable/Builder.vue';
import Th from '@/Components/DataTable/Th.vue';
import VueJsonPretty from "vue-json-pretty";
import {ref} from 'vue';
const dateValue = ref([]);
</script>
<template>
<DashboardLayout
title="Logging Activity"
>
<Card class="bg-white dark:bg-gray-700 dark:text-gray-200">
<template #header>
<div class="flex items-center space-x-2 bg-gray-200 dark:bg-gray-800 p-2">
@@ -117,5 +122,6 @@ import VueJsonPretty from "vue-json-pretty";
<style>
@import 'vue-json-pretty/lib/styles.css';
</style>