Index.vue 617B

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