保誠-保戶業務員媒合平台
HelenHuang
2022-06-09 9bdb95c9e34cef640534e5e5a1e2225a80442000
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import Vue from "vue";
import Component, { mixins } from "vue-class-component";
export { Vue, Component, mixins };
export { Module, getModule, VuexModule, Mutation as VuexMutation, MutationAction, Action as VuexAction, } from "vuex-module-decorators";
export { State, Getter, Action, Mutation, namespace } from "vuex-class";
export { Emit, Inject, InjectReactive, Model, ModelSync, Prop, PropSync, Provide, ProvideReactive, Ref, VModel, Watch, } from "vue-property-decorator";
/**
 * @public
 */
export declare type Constructor = {
    new (...args: any[]): any;
};
/**
 * decorator of $off
 * @public
 * @param event - The name of the event
 * @param method - The name of the method
 */
export declare function Off(event?: string, method?: string): MethodDecorator;
/**
 * decorator of $on
 * @public
 * @param event - The name of the event
 */
export declare function On(event?: string): MethodDecorator;
/**
 * decorator of $once
 * @public
 * @param event - The name of the event
 */
export declare function Once(event?: string): MethodDecorator;
/**
 * decorator of $nextTick
 *
 * @public
 * @param method - Method name
 * @returns Method Decorator
 */
export declare function NextTick(method: string): MethodDecorator;