Add walkthrough
CI / backend (push) Canceled after 15s
CI / frontend (push) Successful in 1m36s

This commit is contained in:
2026-08-12 07:05:37 +08:00
parent 3680dc5ea7
commit 4fb9c95dfb
37 changed files with 1682 additions and 23 deletions
@@ -1,5 +1,5 @@
<template>
<div class="app-header">
<div class="app-header" :data-tour="tourAnchor || undefined">
<div class="app-header-title min-w-0 flex-1">
<div class="min-w-0">
<h1 class="text-lg sm:text-xl font-semibold text-ink-strong leading-tight">
@@ -25,7 +25,9 @@ withDefaults(
defineProps<{
title: string
description?: string
/** Stable walkthrough anchor, e.g. intake-header */
tourAnchor?: string
}>(),
{ description: undefined },
{ description: undefined, tourAnchor: undefined },
)
</script>