Replies: 2 comments 2 replies
-
Please write down the exact steps that you are doing and exactly where you are changing the code. I would also be interested to know why you are editing the App.js file as that very rarely requires any changes. Edit: Sounds like you are adding it to the global event listeners that we don't unregister, because that file very rarely needs changes and under normal app usage the App component is created once and never destroyed. |
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
-
When I run
yarn run dev
everything works as it should but if I'm editing for instance, App.js and I add aconsole.warn
somewhere, the app updates accordingly but then if I remove thatconsole.warn
statement, the app still behaves as it was there. It's only adding code and not removing it. The .vue components behave normally though, just not App.js, I haven't checked any other vanilla js scripts.Beta Was this translation helpful? Give feedback.
All reactions