-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
23 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/** | ||
* Conference data | ||
* | ||
* This is where you can define shared data specific to the current conference. | ||
* | ||
* @example | ||
* <script setup lang="ts"> | ||
* import { conference } from '#data/conference' | ||
* | ||
* const start = conference.startDate.toLocaleDateString() | ||
* const end = conference.endDate.toLocaleDateString() | ||
* </script> | ||
* | ||
* Conference date: {{ start }} ~ {{ end }} | ||
*/ | ||
export const conference = { | ||
year: 2024, | ||
startDate: new Date('2024-08-03'), | ||
endDate: new Date('2024-08-04'), | ||
} |