-
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.
update page names to conform to patterns, pr feedback
- Loading branch information
1 parent
3f500a7
commit 9605a1a
Showing
4 changed files
with
20 additions
and
47 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,15 +1,23 @@ | ||
<script setup lang="ts"> | ||
import { inject } from "vue"; | ||
import { displayedRowKey } from "@/arches_lingo/constants.ts"; | ||
import type { DisplayedRowRefAndSetter } from "@/arches_lingo/types"; | ||
const { displayedRow } = inject( | ||
displayedRowKey, | ||
) as unknown as DisplayedRowRefAndSetter; | ||
import Splitter from "primevue/splitter"; | ||
import SplitterPanel from "primevue/splitterpanel"; | ||
import SchemeLicense from "@/arches_lingo/components/scheme/report/SchemeLicense.vue"; | ||
import SchemeNote from "@/arches_lingo/components/scheme/report/SchemeNote.vue"; | ||
import SchemeUri from "@/arches_lingo/components/scheme/report/SchemeUri.vue"; | ||
import SchemeStandard from "@/arches_lingo/components/scheme/report/SchemeStandard.vue"; | ||
import SchemeAuthority from "@/arches_lingo/components/scheme/report/SchemeAuthority.vue"; | ||
</script> | ||
|
||
<template> | ||
<pre style="text-wrap: auto">{{ displayedRow }}</pre> | ||
<div> | ||
<Splitter> | ||
<SplitterPanel> | ||
<SchemeNote /> | ||
<SchemeAuthority /> | ||
<SchemeStandard /> | ||
<SchemeLicense /> | ||
<SchemeUri /> | ||
</SplitterPanel> | ||
</Splitter> | ||
</div> | ||
</template> |
This file was deleted.
Oops, something went wrong.
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