verzatiletom / vcomponent
A simple vue component generator using make:v-component artisan command in Laravel.
Installs: 19
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:laravel
Requires
- php: ^7.0
- illuminate/support: ^5.1
Requires (Dev)
- phpunit/phpunit: ^6.0
This package is not auto-updated.
Last update: 2025-04-05 15:39:33 UTC
README
A simple vue component generator using make:v-component
artisan command in Laravel.
Installation
composer require verzatiletom/vcomponent
For Laravel 5.4 and below, paste this to your config/app.php
inside your providers
array.
Verzatiletom\Vcomponent\VcomponentServiceProvider::class
Usage
php artisan make:v-component {name} {--dir}
Example
php artisan make:v-component DemoComponent
It will generate a DemoComponent.vue
file in the resources/assets/js
directory by default.
Specify the location
php artisan make:v-component DemoComponent --dir js/components
By specifying the --dir
option, it will generate your .vue
file on the your specified directory. In this example, it will generate your vue component in assets/js/components
directory.