CSR-803: do not think async/await is needed here
This commit is contained in:
parent
cffbe64b33
commit
e98543dc5c
1 changed files with 2 additions and 2 deletions
|
|
@ -35,9 +35,9 @@ export default {
|
|||
modelValue: Array,
|
||||
glassIndex: Number,
|
||||
},
|
||||
async created() {
|
||||
created() {
|
||||
// validate form upon create to prevent out of sync / persistent valid states
|
||||
await useValidateForm(); // do a test validation check, without triggering full validation
|
||||
useValidateForm(); // do a test validation check, without triggering full validation
|
||||
|
||||
this.questionData.map((q, i) => {
|
||||
const question = {
|
||||
|
|
|
|||
Loading…
Reference in a new issue