Home  >  Q&A  >  body text

Pinia InternalError: too many recursion errors when using q-list in Quasar

<p>While using Pinia Store in my Quasar component I encountered this error <code>InternalError: Too much recursion</code> and I have done everything I know but no resolution. </p><p> Can I get advice here? </p> <p>This is my <code>IndexPage.vue</code> where I call the QList component: </p> <pre class="brush:php;toolbar:false;"><template> <q-page> <div class="q-pa-md" style="max-width: 350px"> <QList /> </div> </q-page> </template> <script> import QList from 'src/components/QList.vue'; export default { components: { QList } } </script></pre> <p>This is my <code>QList.vue</code> component: </p> <pre class="brush:php;toolbar:false;"><template> <div v-if="loading">Carregando...</div> <q-list v-else bordered separator> <q-item v-for="item in testData" :key="item.id" clickable v-ripple> <q-item-section>{{ item.title }}</q-item-section> </q-item> </q-list> </template> <script> import { testeStore } from '../stores/teste' import { defineComponent, computed, onMounted } from 'vue'; export default defineComponent({ setup () { const store = testeStore(); onMounted(() => { store.loadData(); }); const testData = computed(() => store.getData()); const loading = computed(() => store.$state.loading); return { testData, loading } } }) </script></pre> <p>还有我的 <code>testeStore.js</code> 商店:</p> <pre class="brush:php;toolbar:false;">import { defineStore } from 'pinia' import testeData from '../assets/data/testes.json' export const testeStore = defineStore({ id: 'teste', state: () => ({ data: [], loading: false, }), getters: { getData: state => state.data, }, actions: { loadData () { try { this.loading = true this.data = testeData; } catch (error) { console.log(`Error fetching testes: ${{ error }}`) } finally { this.loading = false } } } })</pre> <p>每个组件看起来都很正常,我真的不知道我的问题出在哪里。这是来自控制台的一段 vue warn:</p> <pre class="brush:php;toolbar:false;">[Vue warn]: Unhandled error during execution of scheduler flush. This is likely a Vue internals bug. Please open an issue at https://new-issue.vuejs.org/?repo=vuejs/core at <QList key=1 bordered="" separator="" > at <QList key=1 bordered="" separator="" > at <QList key=1 bordered="" separator="" > at <QList key=1 bordered="" separator="" > at <QList key=1 bordered="" separator="" > at <QList key=1 bordered="" separator="" > at <QList key=1 bordered="" separator="" > at <QList key=1 bordered="" separator="" > at <QList key=1 bordered="" separator="" > at <QList key=1 bordered="" separator="" > at <QList key=1 bordered="" separator="" > at <QList key=1 bordered="" separator="" > at <QList key=1 bordered="" separator="" > at <QList key=1 bordered="" separator="" > at <QList key=1 bordered="" separator="" > at <QList key=1 bordered="" separator="" > at <QList key=1 bordered="" separator="" > at <QList key=1 bordered="" separator="" > at <QList key=1 bordered="" separator="" > at <QList key=1 bordered="" separator="" > at <QList key=1 bordered="" separator="" ></pre></p>
P粉262073176P粉262073176413 days ago384

reply all(1)I'll reply

  • P粉547170972

    P粉5471709722023-09-02 18:21:58

    Just checked stackblitz and it looks like there is a naming conflict between your own QList component and Quasar's built-in "q-list" component. Vue treats component names case-insensitively, which is why it interprets "q-list" and "QList" as the same component.

    To resolve this issue, you can try renaming your QList component to another name that does not conflict with the Quasar component, such as "MyQList", or importing the Quasar "q-list" component using an alias.

    From 'quasar' import { Qlist as QuasarList }

    reply
    0
  • Cancelreply