| Server IP : 185.208.173.17 / Your IP : 87.236.161.98 Web Server : Microsoft-IIS/10.0 System : Windows NT SRV8576125506 10.0 build 26100 (Windows Server 2016) AMD64 User : IUSR ( 0) PHP Version : 7.4.13 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/parsmega.nuxt/node_modules/vue/src/types/ |
Upload File : |
import { Config } from 'core/config'
import { Component } from './component'
/**
* @internal
*/
export interface GlobalAPI {
// new(options?: any): Component
(options?: any): void
cid: number
options: Record<string, any>
config: Config
util: Object
extend: (options: typeof Component | object) => typeof Component
set: <T>(target: Object | Array<T>, key: string | number, value: T) => T
delete: <T>(target: Object | Array<T>, key: string | number) => void
nextTick: (fn: Function, context?: Object) => void | Promise<any>
use: (plugin: Function | Object) => GlobalAPI
mixin: (mixin: Object) => GlobalAPI
compile: (template: string) => {
render: Function
staticRenderFns: Array<Function>
}
directive: (id: string, def?: Function | Object) => Function | Object | void
component: (
id: string,
def?: typeof Component | Object
) => typeof Component | void
filter: (id: string, def?: Function) => Function | void
observable: <T>(value: T) => T
// allow dynamic method registration
[key: string]: any
}