Skip to content

Installation

The heart of our template is the src/@core directory, where you'll find all the essential elements, including components, styles, utility functions, and composables.

Most updates or changes to the template will take place in this directory, so it's crucial to keep it well-maintained and up-to-date to optimize performance and usability.

Note

All the files in the src/@core directory are auto-imported when they are used to streamline the development process.

Components

This folder contains a collection of UI components, including buttons, tabs, inputs, accordions, and more, that you can easily use throughout various files in the project.

Composable

This directory contains all the composable functions used throughout the project, enabling the sharing of logic across different components or functions within the application.

Scss

This is the primary SCSS folder where all our style sheets are stored. Inside, you'll find abstract SCSS files containing defined mixins and variables.

Utils

The utils folder includes various helper functions for your application, such as formatters, helpers, validators, and more.

Validators

This file contains specific form validation rules for use in Form components. By adding a rules prop to the component, you ensure that the data entered into the form meets the specified criteria before submission

COPYRIGHT