Index.vue 646B

123456789101112131415161718192021222324252627282930
  1. <script setup>
  2. import CompanyProfile from './Components/CompanyProfile.vue'
  3. import Ppn from './Components/Ppn.vue'
  4. import DashboardLayout from '@/layouts/Dashboard/DashboardLayout.vue'
  5. defineProps({
  6. ppn: Object,
  7. company: Object,
  8. })
  9. </script>
  10. <template>
  11. <DashboardLayout title="Pengaturan">
  12. <div class="grid">
  13. <div class="col-12">
  14. <Card>
  15. <template #title> Pengaturan </template>
  16. <template #content>
  17. <CompanyProfile :company="company" />
  18. <Divider />
  19. <Ppn :ppn="ppn" />
  20. </template>
  21. </Card>
  22. </div>
  23. </div>
  24. </DashboardLayout>
  25. </template>