[Vuejs]-Even if data is entered from outside the app, it will not be reflected

0👍

Vue.createApp() creates an application instance, used to configure the application setup, such as registering components, directives, and global props. The application instance returns the root component in its mount() API.

As you discovered, the component data can only be updated through the component reference.

Leave a comment