September 2018
Intermediate to advanced
328 pages
9h 10m
English
The App component is the base component that renders all of the child components in the application. We'll briefly review the App component's code to gain a better understanding of Vue. Going forward, we'll describe the role each remaining component plays, but only review sections of the corresponding code. The contents of the App component file, located at /src/components/App.js, are shown as follows:
import BalancesBar from './BalancesBar/BalancesBar.js';import ChartsTab from './ChartsTab/ChartsTab.js';import TransactionsTab from './TransactionsTab/TransactionsTab.js';/** * This component is the entry point for the application. It contains the * header, tabs, and content. */export default { name: 'app', components: {Read now
Unlock full access