UNPKG

vva-cli

Version:

A CLI of Vue 3 and Typescript and Element-plus in Vite

13 lines (10 loc) 274 B
import { RouteRecordRaw } from 'vue-router'; interface AsyncDataContextType { route: RouteRecordRaw; store: any; } declare module '@vue/runtime-core' { interface ComponentCustomOptions { asyncData?(context: AsyncDataContextType): Promise<any>; } }