Initial project scaffolding

This commit is contained in:
2026-03-25 22:34:03 -04:00
commit a46c97c88a
92 changed files with 9671 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import { toastController } from '@ionic/vue'
export function useIonToast() {
async function showToast(message: string, color: 'success' | 'danger' | 'warning' = 'success') {
const toast = await toastController.create({
message,
duration: 2000,
color,
position: 'bottom',
})
await toast.present()
}
return { showToast }
}