- Added detailed labels to the deployment script for IndeedHub, including title, version, description, license, icon, and repository URL. - Updated package dependencies in package.json and package-lock.json, including upgrading 'nostr-tools' to version 2.23.0 and adding 'axios' and '@tanstack/vue-query'. - Improved README with a modern description of the platform and updated project structure details. This commit enhances the clarity of the deployment process and ensures the project is using the latest dependencies for better performance and features.
26 lines
586 B
Vue
26 lines
586 B
Vue
<template>
|
|
<div id="app" class="min-h-screen">
|
|
<RouterView />
|
|
|
|
<!-- Mobile Navigation (hidden on desktop) -->
|
|
<MobileNav />
|
|
|
|
<!-- Toast Notifications -->
|
|
<ToastContainer />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { onMounted } from 'vue'
|
|
import { useAuthStore } from './stores/auth'
|
|
import MobileNav from './components/MobileNav.vue'
|
|
import ToastContainer from './components/ToastContainer.vue'
|
|
|
|
const authStore = useAuthStore()
|
|
|
|
onMounted(async () => {
|
|
// Initialize authentication on app mount
|
|
await authStore.initialize()
|
|
})
|
|
</script>
|