Troubleshooting section in docs #3574
Bond-Addict
started this conversation in
Ideas
Replies: 1 comment 1 reply
-
At first, we need to collect the most common issues. Here is a small list I can find:
Idk. Need to fulfil the list at first. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
It would be really nice to have common issues in a trouble shooting sections. For example, I just an issue where I couldn't get a component to work on a new page (after updating).
The error I was having is I was receiving 'Error: Vuestic cache plugin is not registered!'
After researching on stackoverflow I could not find a solution. Once I put in an issue for the toast component I was using it was pointed out that the import was incorrect. This can happen often because vscode will automatically create imports which may be wrong, but look correct and still allow the app to build.
Another example I was using
instead of
I'm not sure what would be the best format. Maybe to start with a table with common/easy errors?
Something like:
Common Errors
Example:
❌ import { useModal } from 'vuestic-ui/web-components'
✔️ import { useModal } from 'vuestic-ui';
This would allow us to resolve more of our own issues so the Vuestic team can focus on more important things 😃
Beta Was this translation helpful? Give feedback.
All reactions