You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the meantime, in a Vue3 app, a survey is registered using surveyPlugin. main.ts
import { createApp } from "vue";
import { surveyPlugin } from "survey-vue3-ui";
import App from "./App.vue";
import "survey-core/defaultV2.min.css";
const app = createApp(App).use(surveyPlugin);
app.mount("#app");
However, with this approach, a survey library is loaded immediately after an application starts.
Consider registering a survey as a component directly within a Vue component. With this option, the Form Library library will be loaded only when the corresponding Vue component is loadeded rather than at the application startup.
The text was updated successfully, but these errors were encountered:
T19153 - Survey Creator - Vue plugin build issues
https://surveyjs.answerdesk.io/internal/ticket/details/T19153
In the meantime, in a Vue3 app, a survey is registered using
surveyPlugin
.main.ts
However, with this approach, a survey library is loaded immediately after an application starts.
Consider registering a survey as a component directly within a Vue component. With this option, the Form Library library will be loaded only when the corresponding Vue component is loadeded rather than at the application startup.
The text was updated successfully, but these errors were encountered: