Skip to content

Commit

Permalink
Merge pull request #9 from Cambio-Project/pspwizard_integration
Browse files Browse the repository at this point in the history
Pspwizard integration
  • Loading branch information
angie-1999 authored Jan 16, 2024
2 parents 084cd4d + 2190f46 commit c657c65
Show file tree
Hide file tree
Showing 2 changed files with 1,121 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/App.vue
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
<script setup>
import { ref, computed } from 'vue'
import Dashboard from '@/components/Dashboard.vue'
import PSPWizard from "@/components/PSPWizard.vue";
import Scenarios from "@/components/Scenarios.vue";
const routes = {
'/': Dashboard,
'/pspwizard': PSPWizard,
'/scenarios': Scenarios
}
Expand All @@ -23,6 +25,7 @@ const currentView = computed(() => {
<template>
<component :is="currentView" />
<a href="#/">Dashboard</a> |
<a href="#/pspwizard">PSPWizard</a>
<a href="#/scenarios">Scenarios</a>
</template>

Expand All @@ -36,5 +39,3 @@ const currentView = computed(() => {
margin-top: 60px;
}
</style>


Loading

0 comments on commit c657c65

Please sign in to comment.