This contains the main layout which includes the header, left-menu and the right-side component. The right-side component contains the right-side bar.
The components can be imported using the keyword import
import
import clear_header from "./components/layout/clear_header";
The component which is being imported is to declared in the components object:
components: {clear_header,left_side,right_side}
The component exporting is done using export default
`export default { ... }
`
Last updated 5 years ago