Enhance application structure: Add runtime configuration for environment variables, integrate new dependencies for Cloudinary and UI components, and refactor member management features including improved forms and member dashboard. Update styles and layout for better user experience.
This commit is contained in:
parent
6e7e27ac4e
commit
e4a0a9ab0f
61 changed files with 7902 additions and 950 deletions
30
app/pages/admin/test.vue
Normal file
30
app/pages/admin/test.vue
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
<template>
|
||||
<div>
|
||||
<h1>UI Component Test</h1>
|
||||
|
||||
<div class="space-y-4">
|
||||
<!-- Basic Button Test -->
|
||||
<UButton>Test Button</UButton>
|
||||
|
||||
<!-- Basic Card Test -->
|
||||
<UCard>
|
||||
<template #header>
|
||||
<h3>Test Card</h3>
|
||||
</template>
|
||||
<p>Card content</p>
|
||||
</UCard>
|
||||
|
||||
<!-- Basic Input Test -->
|
||||
<UInput placeholder="Test input" />
|
||||
|
||||
<!-- Basic Table Test -->
|
||||
<UTable :columns="[{key: 'name', label: 'Name'}]" :rows="[{name: 'Test'}]" />
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
definePageMeta({
|
||||
layout: 'admin'
|
||||
})
|
||||
</script>
|
||||
Loading…
Add table
Add a link
Reference in a new issue