-
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(skeleton): define global message component
- Loading branch information
Showing
1 changed file
with
23 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<template> | ||
<div class="min-h-screen flex flex-grow items-center justify-center"> | ||
<div class="rounded-lg bg-white p-8 text-center shadow-xl"> | ||
<h1 class="mb-4 text-2xl font-light"> | ||
{{ title }} | ||
</h1> | ||
<div class="text-sm"> | ||
<slot name="text"> | ||
{{ text }} | ||
</slot> | ||
</div> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
interface Props { | ||
title: string | ||
text?: string | ||
} | ||
defineProps<Props>() | ||
</script> |