Subscribe on changes!

[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

avatar
Apr 2nd 2022

Version

3.2.31

Reproduction link

github.com

Steps to reproduce

  1. Run server: npm start
  2. Run client: cd ./client and npm run serve
  3. Click on Dashboard in the top navigation bar

What is expected?

Expected to view the page and modal after clicking on the edit (pencil) icon to fill up with appropriate data.

What is actually happening?

Blank page and issue below:

[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 at <TablePostItem key="62477cede853d7bef20f5ff0" post= {_id: '62477cede853d7bef20f5ff0', category: 'journal', title: 'Private journal entry', body: 'I said this is private', image: '', …} > at <TablePosts posts= (4) [{…}, {…}, {…}, {…}] > at <Dashboard onVnodeUnmounted=fn ref=Ref< null > > at at


I imported state into modal to try to fill in the input fields.

avatar
Apr 3rd 2022

I decided to create a page in my view directory and initiated the data values using the created method instead, and that seemed to work with no issues.