feat: recent lists
Docker Build / build (push) Has been cancelled
TS Lint / ESLint (push) Has been cancelled
TS Lint / Oxlint (push) Has been cancelled
TS Lint / TypeScript (push) Has been cancelled

This commit is contained in:
2026-07-15 16:34:37 +02:00
parent 5e60b5ad20
commit ea9a50a2f7
9 changed files with 85 additions and 31 deletions
+2 -1
View File
@@ -2,7 +2,8 @@
import { ref, onBeforeMount, watch } from "vue";
import { getCron, parseCron, validCron } from "@/lib/cron";
import { CronType } from "@/enums";
import { DEFAULT_CRON } from "@/constants";
const DEFAULT_CRON = "0 0 * * *";
const cron = defineModel<string | null>({ required: true });
const rawCron = ref<string>(DEFAULT_CRON);
+15
View File
@@ -0,0 +1,15 @@
<script setup lang="ts">
import { ArrowBigRightDashIcon } from "@lucide/vue";
defineProps<{list: string}>();
</script>
<template>
<router-link
:to="`/${list}`"
class="w-full flex gap-2 mb-2"
>
<arrow-big-right-dash-icon :size="16" class="inline" />
<span class="underline">{{ list }}</span>
</router-link>
</template>