-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use link to include donation centers page + some staff pages styling
- Loading branch information
1 parent
be78783
commit 0a2e4f9
Showing
3 changed files
with
33 additions
and
13 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 |
---|---|---|
@@ -1,13 +1,20 @@ | ||
<script setup lang="ts"> | ||
const today: number = 30 | ||
import { RouterLink } from 'vue-router'; | ||
</script> | ||
|
||
<template> | ||
<h1>Dashboard</h1> | ||
|
||
<p>Incoming today:</p> | ||
<p>{{ today }}</p> | ||
|
||
<p><a href="">Lấy máu</a></p> | ||
<p><a href="">Xét nghiệm</a></p> | ||
<header> | ||
<h1>Dashboard</h1> | ||
</header> | ||
<section> | ||
<h2>Under Conception</h2> | ||
<p><RouterLink to="/staff/login">Login</RouterLink></p> | ||
</section> | ||
</template> | ||
|
||
<style scoped> | ||
section { | ||
max-width: 800px; | ||
margin: auto; | ||
} | ||
</style> |
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