chore (client): restrict possible page values
This commit is contained in:
parent
5a2d1c2010
commit
024eab99f1
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ const XGallery = defineAsyncComponent(() => import("./gallery.vue"));
|
||||||
const props = withDefaults(
|
const props = withDefaults(
|
||||||
defineProps<{
|
defineProps<{
|
||||||
acct: string;
|
acct: string;
|
||||||
page?: string;
|
page?: "home" | "reactions" | "media" | "clips" | "pages" | "gallery";
|
||||||
}>(),
|
}>(),
|
||||||
{
|
{
|
||||||
page: "home",
|
page: "home",
|
||||||
|
|
Loading…
Reference in a new issue