iralex-admin-front/README.md

1.2 KiB

Documentation

Loading

You can use the global loader (defined in "src/store/app") using the 'app/TOGGLE_OVERLAY' mutation.

this.$store.commit('app/TOGGLE_OVERLAY')

It displays a loader only on the content of the page and does not include the main menu.

Validations

Validations are in the file "src/@core/utils/validations/validations.js".\

UI Elements


The Navbar

Navbar is the horizontal menu displayed at the top of the application. It is located at "src/@core/layouts/components/app-navbar/AppNavbarVerticalLayout.vue".

Main Menu

Main menu is the giant menu displayed to the left of the screen.
The list of menus to display is located at "src/navigation/vertical".

Install & Run

Get the project by cloning it to a folder (or just download the zip).

git clone <todo: add the git address>
cd <todo: add branch name>

Then, install all the node modules. The project is compatible with node v14; using higher node versions might cause you installation errors.

npm install

or

yarn

To run the project, use the 'serve' command.

npm run serve

or

yarn serve