State Management
Pinia Stores
Store file
Composable
Purpose
Security Store
const securityStore = useSecurityStore()
// Check if user is logged in
if (securityStore.isAuthenticated) { ... }
// Access current user object
const user = securityStore.userCID Request Store
Course Settings Store
Platform Config Store
Vuex Store (Legacy)
Module
Purpose
Composables
File
Purpose
Last updated
Was this helpful?