Vue Guideline: Composables — Name composables with use prefix. Description: Convention for composable functions. Do: useFetch useAuth useForm. Don't: getData or fetchApi. Good Example: export function useFetch(). Bad Example: export function fetchData(). Severity: Medium. Docs: https://vuejs.org/guide/reusability/composables.html.