Skip to content

Commit

Permalink
work for the #6402 (rating / css vars)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry-kurmanov committed Jun 23, 2023
1 parent a5b2b4d commit fa9b904
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/survey-vue-ui/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1049,7 +1049,7 @@ const json = {
StylesManager.applyTheme("defaultV2");
window.survey = new SurveyModel(json);
//window.survey = new SurveyModel(json);
export default defineComponent({
name: "App",
Expand All @@ -1058,7 +1058,7 @@ export default defineComponent({
Survey,
},
data() {
const survey = window.survey;
const survey = new SurveyModel(json);
survey.title = "It works!";
survey.description = "This is the first survey in Vue3";
survey.surveyId = "Survey1";
Expand Down

0 comments on commit fa9b904

Please sign in to comment.