Overview
src/views/components/
that have properties with strict typing and default values. A property is only required if you mark it required. You can set default values otherwise.📙 What you'll learn
Tip
Components
In this article we will walk you through the main pages' components, which are:
Home components | Header components | Footer components | Products components | Comments component |
Home Components
src/views/components/home/
are found in the home page and it's significant in giving the store front- display. Each component plays a role in exhibiting the store main details such as, Youtube videos of the store, customer testimonials and other components that sets the store tone. More on home components and it's usage in home page here.Home Components Location
Header Components
src/views/components/header/
are found on all pages of the store and considered to be used frequently so for ease of access it's postioned on the top area of the page. More about Header components here.Header Components Location
└── src
├── components
| ...
| ├──── header
| ...
...
Footer Components
src/views/components/footer/
are also commonly used and usually found in the footer area of the page, such are contacts and payment methods. More about Footer components here.Footer Components Location
└── src
├── components
| ...
| ├──── footer
| ...
...
Products Components
src/views/components/product/
are grouped into 2 groups:Products Components Location