Custom Page
Badaso uses the VueJS framework for the Frontend and Vue-Router for routing. Therefore, adding pages to the frontend also uses VueJS. The block below is a directory structure for adding a new pages to the frontend.
#
Add Custom Page- To add a pages, add it to the
pages
directory.
๐ฆ Your Projectโฃ ๐ resourcesโ โฃ ๐ jsโ โ โฃ ๐ badasoโ โ โ โฃ ๐ pages โ โ โ โ โฃ ๐ {your-page} /** create your own pages here **/โ โ โ โ โ โฃ ๐ browse.vueโ โ โ โ โ โฃ ๐ read.vueโ โ โ โ โ โฃ ๐ edit.vueโ โ โ โ โ โฃ ๐ add.vueโ โ โ โ โ โ ๐ sort.vue
- To access the new pages, the user must add a router to the router directory.
๐ฆ Your Projectโฃ ๐ resourcesโ โฃ ๐ jsโ โ โฃ ๐ badasoโ โ โ โฃ ๐ routers /** create your own router .js here **/โ โ โ โ โฃ ๐ admin /** router page that using admin layout **/โ โ โ โ โฃ ๐ auth /** router page that using auth layout **/โ โ โ โ โฃ ๐ others /** router page that using your custom layout **/โ โ โ โ โ ๐ public /** router page that using public layout **/