forked from bcgov/STRR
-
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.
Merge pull request bcgov#53 from turb0c0w/sam/examiner-dash
Fixing enum mapping logic
- Loading branch information
Showing
4 changed files
with
41 additions
and
17 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
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,28 @@ | ||
<template> | ||
<div> | ||
<BcrosTypographyH1 text="My CEU STR Registry Dashboard" /> | ||
<BcrosTypographyH2 text="Owners STR Registration Applications" /> | ||
<div /> | ||
<div class="bg-white"> | ||
<div class="flex flex-row justify-between"> | ||
<div> | ||
<UInput /> | ||
</div> | ||
<div> | ||
<USelect /> | ||
</div> | ||
</div> | ||
<UTable /> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
// const t = useNuxtApp().$i18n.t | ||
definePageMeta({ | ||
layout: 'wide-no-space' | ||
}) | ||
</script> |