import Vue from "vue"; import { SurveyLayout, SurveyModel } from "@wg-npm/survey-core"; export interface SurveyCreatorOptions { layout: SurveyLayout; } export declare class SurveyCreator extends Vue { /** * 问卷 */ "survey": SurveyModel; /** * 问卷配置 */ "options"?: SurveyCreatorOptions; /** * 当点击返回按钮时触发 */ $emit(eventName: "on-back"): this; /** * 当问卷保存时触发 */ $emit(eventName: "on-save", survey: SurveyModel): this; }