// js/header_component.js const navItems = [ { class: 'top disp_sp_only', href: 'index.html#top', label: 'ページトップ' }, { class: 'news disp_sp_only', href: 'index.html#news', label: 'お知らせ' }, { class: 'about', href: 'index.html#Category', label: 'ブース一覧・開催概要' }, { class: 'food', href: 'food.html', label: 'グルメ' }, { class: 'taiken', href: 'taiken.html', label: '体験・学び・SDGs' }, { class: 'khb_booth', href: 'khb_booth.html', label: 'khbコンテンツ' }, { class: 'entame', href: 'entame.html', label: 'ステージ' }, { class: 'rally', href: 'rally.html', label: 'デジタル
スタンプラリー' } ]; const HeaderComponent = { template: `

あすとつながるぐりりパーク【khb開局記念イベント2025】

`, data() { return { navItems }; } };