Added placeholder History Card to CRM Overview.
This commit is contained in:
parent
73f4b3b97a
commit
b802dcd20a
2 changed files with 56 additions and 15 deletions
33
frontend/src/components/clientSubPages/History.vue
Normal file
33
frontend/src/components/clientSubPages/History.vue
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
<template>
|
||||
<h3>History</h3>
|
||||
<Tabs value="0" class="tabs">
|
||||
<TabList>
|
||||
<Tab value="0">Communication</Tab>
|
||||
<Tab value="1">Site Visits</Tab>
|
||||
<Tab value="2">Ownership</Tab>
|
||||
</TabList>
|
||||
<TabPanels>
|
||||
<TabPanel value="0">
|
||||
<div>Communication History</div>
|
||||
</TabPanel>
|
||||
<TabPanel value="1">
|
||||
<div>Site Visits</div>
|
||||
</TabPanel>
|
||||
<TabPanel value="2">
|
||||
<div>Ownership History</div>
|
||||
</TabPanel>
|
||||
</TabPanels>
|
||||
</Tabs>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { ref, onMounted } from "vue";
|
||||
import Tabs from "primevue/tabs";
|
||||
import TabList from "primevue/tablist";
|
||||
import Tab from "primevue/tab";
|
||||
import TabPanels from "primevue/tabpanels";
|
||||
import TabPanel from "primevue/tabpanel";
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
</style>
|
||||
Loading…
Add table
Add a link
Reference in a new issue