UNPKG

@quasar/quasar-ui-qcalendar

Version:

QCalendar - Day/Month/Week Calendars, Popups, Date Pickers, Schedules, Agendas, Planners and Tasks for your Vue Apps

15 lines (12 loc) 334 B
import { h, VNode } from 'vue' /** * Creates an accessible focus helper span element. * @returns {VNode[]} An array containing a single span VNode. */ export default function useFocusHelper(): VNode[] { const spanProps = { 'aria-hidden': 'true', class: 'q-calendar__focus-helper', } return [h('span', spanProps)] }