- Consolidated global error handling in app.vue to redirect users to the login page on API authentication failure. - Enhanced MapView component by reintroducing event listeners for selected map and marker updates, improving interactivity. - Updated PasswordInput and various modal components to ensure proper input handling and accessibility compliance. - Refactored MapControls and MapControlsContent to streamline prop management and enhance user experience. - Improved error handling in local storage operations within useMapBookmarks and useRecentLocations composables. - Standardized input elements across forms for consistency in user interaction.
11 lines
216 B
Vue
11 lines
216 B
Vue
<template>
|
|
<div
|
|
class="animate-pulse rounded-md bg-base-300"
|
|
:class="$attrs.class"
|
|
/>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
defineOptions({ name: 'AppSkeleton', inheritAttrs: false })
|
|
</script>
|