PHP Classes

File: resources/js/Pages/API/Index.vue

Recommend this page to a friend!
  Classes of Robert Devenyi   Iceburg SAAS PHP CRM Open Source   resources/js/Pages/API/Index.vue   Download  
File: resources/js/Pages/API/Index.vue
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Iceburg SAAS PHP CRM Open Source
Application to manage the contacts of customers
Author: By
Last change:
Date: 1 year ago
Size: 823 bytes
 

Contents

Class file image Download
<script setup> import ApiTokenManager from '@/Pages/API/Partials/ApiTokenManager.vue'; import AppLayout from '@/Layouts/AppLayout.vue'; defineProps({ tokens: Array, availablePermissions: Array, defaultPermissions: Array, }); </script> <template> <AppLayout title="API Tokens"> <template #header> <h2 class="font-semibold text-xl text-gray-800 leading-tight"> API Tokens </h2> </template> <div> <div class="max-w-7xl mx-auto py-10 sm:px-6 lg:px-8"> <ApiTokenManager :tokens="tokens" :available-permissions="availablePermissions" :default-permissions="defaultPermissions" /> </div> </div> </AppLayout> </template>