|
|
||
|---|---|---|
| public | ||
| src | ||
| .browserslistrc | ||
| .dockerignore | ||
| .eslintignore | ||
| .eslintrc.js | ||
| .gitignore | ||
| .prettierignore | ||
| DOC.txt | ||
| Dockerfile | ||
| IralexAdmin.code-workspace | ||
| README.md | ||
| [Table Engine Example] Matters.vue | ||
| babel.config.js | ||
| jsconfig.json | ||
| package-lock.json | ||
| package.json | ||
| postcss.config.js | ||
| themeConfig.js | ||
| vue.config.js | ||
| woodpecker.yml | ||
README.md
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