https://github.com/webfiori/vuetifycore
A base theme which contains basic page structure for creating vuetify based themes.
https://github.com/webfiori/vuetifycore
hacktoberfest php vue vuetify webfiori-framework
Last synced: 8 months ago
JSON representation
A base theme which contains basic page structure for creating vuetify based themes.
- Host: GitHub
- URL: https://github.com/webfiori/vuetifycore
- Owner: WebFiori
- License: mit
- Created: 2021-09-28T18:56:30.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-10-11T17:53:05.000Z (8 months ago)
- Last Synced: 2025-10-14T06:06:49.019Z (8 months ago)
- Topics: hacktoberfest, php, vue, vuetify, webfiori-framework
- Language: PHP
- Homepage:
- Size: 106 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Vuetify Core
This repo holds a base theme which holds basic structure for building Vuetify based themes.
## Installation
First of all, you need to have WebFiori framework installed. After that, include the following in your `require` section of your `composer.json` file: `webfiori/vuetifyCore`. Then run the command `php composer "install" "--no-dev"` to install your dependencies.
## Classes
### [`VuetifyThemeCore`](https://github.com/WebFiori/vuetifyCore/blob/main/themes/vuetifyCore/VuetifyThemeCore.php)
This is the theme class. It acts as the core of any Vuetify based theme. The developer must extend this class in order to create his own Vuetify based themes.
### [`VuetifyWebPage`](https://github.com/WebFiori/vuetifyCore/blob/main/themes/vuetifyCore/VuetifyWebPage.php)
This class extends the class `WebPage`. It has utility methods which helps in creating pages which is based on Vuetify much easier task.
### [`CreateVuetifyThemeCommand`](https://github.com/WebFiori/vuetifyCore/blob/main/themes/vuetifyCore/cli/CreateVuetifyThemeCommand.php)
A CLI command that can be registered to create Vuetify theme wireframes. This command can be registered in the class `InitCLICommands` of your application.