verzatiletom / vcomponent
A simple vue component generator using make:v-component artisan command in Laravel.
1.0
2018-03-22 06:50 UTC
Requires
- php: ^7.0
- illuminate/support: ^5.1
Requires (Dev)
- phpunit/phpunit: ^6.0
This package is not auto-updated.
Last update: 2025-05-31 16:20:58 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.