You are almost there.
To send the app_content variable from App.vue to a child component, you must pass it as an attribute in the template, for example:
<app-header :app-content="app_content"></app-header>
Now, to get the :app-component property inside appHeader.vue, you will need to rename your prop from app_component to appComponent (this is Vue's convention for passing properties). Finally, to print it inside the child template, just change to: {{ appContent }}
source share