UNPKG

ano-ui

Version:

<p align="center"> <img src="https://github.com/ano-ui/ano-ui/raw/main/public/logo.svg" style="width:100px;" /> <h1 align="center">Ano-UI (WIP)</h1> <p align="center">An UniApp UI components with UnoCSS.</p> </p> <p align="center"> <a href="https://www.np

10 lines (7 loc) 334 B
import type { InjectionKey, Ref } from 'vue' import type { CollapseActiveName } from '../ACollapse/types' export interface CollapseContext { activeNames: Ref<CollapseActiveName[]> handleItemClick: (name: CollapseActiveName) => void } export const collapseContextKey: InjectionKey<CollapseContext> = Symbol('collapseContextKey')