Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Uncaught RangeError: Maximum call stack size exceeded #100

Open
matze1708 opened this issue Nov 18, 2021 · 1 comment
Open

Uncaught RangeError: Maximum call stack size exceeded #100

matze1708 opened this issue Nov 18, 2021 · 1 comment

Comments

@matze1708
Copy link

Hello,

I am using the DateTime Picker, I have included it as follows:

<v-datetime-picker
                                      label="Ende"
                                      date-format="dd.MM.yyyy"
                                      time-format="HH:mm"
                                      v-model="editItem.Ende"
                                      :text-field-props="textFieldProps"
                                      :time-picker-props="timePickerProps"
                                      :date-picker-props="datePickerProps"
                                  >
                                    <template slot="dateIcon">
                                      <v-icon>mdi-calendar</v-icon>
                                    </template>
                                    <template slot="timeIcon">
                                      <v-icon>mdi-clock-outline</v-icon>
                                    </template>
 </v-datetime-picker>

        datePickerProps: {},
        timePickerProps: {
            format: "24hr"
        }

I get the following error:

VDialog.ts?d213:245 Uncaught RangeError: Maximum call stack size exceeded

I have integrated the DateTimePicker 2 times.

once on a Vue itself and then inside a modal window, on the modal window I get the error.

Thanks for help

Matthias

@yeamin21
Copy link

:retain-focus="false" solved the issue for me.

  <v-datetime-picker
      v-model="item.starts_at"
      :retain-focus="false"
  ></v-datetime-picker>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants