survey-vue3-ui
Version:
survey.js is a JavaScript Survey Library. It is a modern way to add a survey to your website. It uses JSON for survey metadata and results.
14 lines (13 loc) • 540 B
TypeScript
import SurveyVue from "./Survey.vue";
import PopupSurvey from "./PopupSurvey.vue";
import type { App } from "vue";
import { ComponentFactory } from "./component-factory";
export { useBase, useLocString, useQuestion } from "./base";
export { ComponentFactory };
export { key2ClickDirective } from "./directives/key2click";
export { default as SvComponent } from "./SvComponent.vue";
export { PopupSurvey as PopupSurveyComponent };
export { SurveyVue as SurveyComponent };
export declare const surveyPlugin: {
install(app: App): void;
};