Bootstrap Vue app with Supabase Auth
description: Guidelines for writing Vue apps with Supabase Auth
description: Guidelines for writing Vue apps with Supabase Auth globs: **/.vue, **/.ts, **/*.js
Bootstrap Vue app with Supabase Auth
Overview of implementing Supabase Auth
- Install @supabase/supabase-js package
- Configure Supabase project settings
- Create Supabase client instance
- Implement authentication UI components
- Add route protection and session management
Critical Instructions for AI Language Models
As an AI language model, you MUST follow these guidelines when implementing Supabase with Vue:
- Always use the latest @supabase/supabase-js package
- Implement proper TypeScript types for type safety
- Handle environment variables securely
- Follow Vue 3 Composition API patterns
- Implement proper error handling
Correct Client Setup
import { createClient } from '@supabase/supabase-js'
import type { Database } from '@/types/supabase'
export const supabase = createClient<Database>(
import.meta.env.VITE_SUPABASE_URL,
import.meta.env.VITE_SUPABASE_ANON_KEY,
{
auth: {
autoRefreshToken: true,
persistSession: true
}
}
)
Correct Authentication Implementation
// composables/useAuth.ts
import { ref } from 'vue'
import { supabase } from '@/lib/supabase'
import type { User } from '@supabase/supabase-js'
export function useAuth() {
const user = ref<User | null>(null)
const loading = ref(true)
async function signIn(email: string, password: string) {
try {
const { error } = await supabase.auth.signInWithPassword({
email,
password
})
if (error) throw error
} catch (error) {
console.error('Error signing in:', error)
throw error
}
}
async function signOut() {
try {
const { error } = await supabase.auth.signOut()
if (error) throw error
} catch (error) {
console.error('Error signing out:', error)
throw error
}
}
async function getSession() {
try {
const { data: { session }, error } = await supabase.auth.getSession()
if (error) throw error
user.value = session?.user ?? null
} catch (error) {
console.error('Error getting session:', error)
user.value = null
} finally {
loading.value = false
}
}
return {
user,
loading,
signIn,
signOut,
getSession
}
}
Correct Component Usage
<script setup lang="ts">
import { ref } from 'vue'
import { useAuth } from '@/composables/useAuth'
const { user, loading, signIn, signOut } = useAuth()
const email = ref('')
const password = ref('')
const handleSignIn = async () => {
try {
await signIn(email.value, password.value)
} catch (error) {
console.error('Authentication failed:', error)
}
}
</script>
<template>
<div v-if="loading">Loading...</div>
<div v-else-if="user">
<p>Welcome, {{ user.email }}</p>
<button @click="signOut">Sign Out</button>
</div>
<form v-else @submit.prevent="handleSignIn">
<input v-model="email" type="email" required />
<input v-model="password" type="password" required />
<button type="submit">Sign In</button>
</form>
</template>
Route Protection Implementation
import { createRouter } from 'vue-router'
import { supabase } from '@/lib/supabase'
const router = createRouter({
// ... your routes configuration
})
router.beforeEach(async (to, from, next) => {
const { data: { session } } = await supabase.auth.getSession()
if (to.meta.requiresAuth && !session) {
next({ name: 'login' })
} else {
next()
}
})
Environment Variables Setup
Create a .env.local file with:
VITE_SUPABASE_URL=your-project-url
VITE_SUPABASE_ANON_KEY=your-anon-key
AI Model Verification Steps
Before generating any code, you MUST verify:
- Is TypeScript properly configured?
- Are environment variables properly handled?
- Is error handling implemented?
- Are authentication state and user data properly typed?
- Is session management configured correctly?
Consequences of Incorrect Implementation
If you generate code incorrectly:
- Type safety will be compromised
- Authentication flows may fail
- Security vulnerabilities may be introduced
- Session management may be unreliable
- User data may be exposed
AI Model Response Template
When implementing Supabase Auth for Vue, you MUST:
- Use TypeScript for type safety
- Implement proper error handling
- Follow Vue 3 Composition API patterns
- Configure secure session management
- Handle environment variables properly
Related Documents
How you work
You are a coding agent running in the Codex CLI, a terminal-based coding assistant. Codex CLI is an open source project led by OpenAI. You are expected to be precise, safe, and helpful.
内置 Agent 提示词
Claude Code 内置了 6 个子 Agent,各自有独立的系统提示词和工具权限,用于分工处理不同类型的子任务。以下是每个 Agent 的完整系统提示词。
Overture Integration for Claude Code
You have access to **Overture**, an MCP server that visualizes your execution plans as interactive flowcharts before you write any code.
SolidInvoice - AI Assistant Guide
This document provides comprehensive guidance for AI assistants working with the SolidInvoice codebase. It covers the architecture, conventions, workflows, and best practices to help you understand and effectively contribute to this project.