Enable multi-word Vue component names with explicit naming
Co-Authored-By: Codex <codex@openai.com>
This commit is contained in:
@@ -262,6 +262,7 @@
|
||||
</main>
|
||||
</template>
|
||||
<script setup>
|
||||
defineOptions({ name: "CompareDashboardPage" });
|
||||
// The Lucia project.
|
||||
// Copyright 2024-2026 DSP, inc. All rights reserved.
|
||||
// Authors:
|
||||
|
||||
@@ -22,6 +22,7 @@
|
||||
import { useConformanceStore as useConformanceStoreInGuard } from "@/stores/conformance";
|
||||
|
||||
export default {
|
||||
name: "DiscoverConformancePage",
|
||||
async beforeRouteEnter(to, from, next) {
|
||||
const isCheckPage = to.name.includes("Check");
|
||||
if (isCheckPage) {
|
||||
|
||||
@@ -123,6 +123,7 @@
|
||||
import { useConformanceStore } from "@/stores/conformance";
|
||||
|
||||
export default {
|
||||
name: "DiscoverMapPage",
|
||||
async beforeRouteEnter(to, from, next) {
|
||||
const isCheckPage = to.name.includes("Check");
|
||||
|
||||
|
||||
@@ -249,6 +249,7 @@
|
||||
import { useConformanceStore } from "@/stores/conformance";
|
||||
|
||||
export default {
|
||||
name: "DiscoverPerformancePage",
|
||||
async beforeRouteEnter(to, from, next) {
|
||||
const isCheckPage = to.name.includes("Check");
|
||||
|
||||
|
||||
@@ -455,6 +455,7 @@
|
||||
</div>
|
||||
</template>
|
||||
<script setup>
|
||||
defineOptions({ name: "FilesPage" });
|
||||
// The Lucia project.
|
||||
// Copyright 2024-2026 DSP, inc. All rights reserved.
|
||||
// Authors:
|
||||
|
||||
@@ -79,6 +79,7 @@
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
defineOptions({ name: "LoginPage" });
|
||||
// The Lucia project.
|
||||
// Copyright 2024-2026 DSP, inc. All rights reserved.
|
||||
// Authors:
|
||||
|
||||
@@ -11,6 +11,7 @@
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
defineOptions({ name: "MemberAreaPage" });
|
||||
// The Lucia project.
|
||||
// Copyright 2023-2026 DSP, inc. All rights reserved.
|
||||
// Authors:
|
||||
|
||||
@@ -155,6 +155,7 @@
|
||||
import { useFilesStore } from "@/stores/files";
|
||||
|
||||
export default {
|
||||
name: "UploadPage",
|
||||
beforeRouteEnter(to, from, next) {
|
||||
// An uploadID is required to enter this page
|
||||
next((vm) => {
|
||||
|
||||
Reference in New Issue
Block a user