PHPackages                             laminblur/vue-generate - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. laminblur/vue-generate

ActiveLibrary

laminblur/vue-generate
======================

Laravel Vue Generators

v1.0.7(7y ago)0169↓50%MITPHP

Since Aug 23Pushed 7y ago1 watchersCompare

[ Source](https://github.com/laminblur/vue-generate)[ Packagist](https://packagist.org/packages/laminblur/vue-generate)[ RSS](/packages/laminblur-vue-generate/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (5)Dependencies (1)Versions (9)Used By (0)

Laravel Vue Generators (fork from Beckenrode\\VueGenerators)
============================================================

[](#laravel-vue-generators-fork-from-beckenrodevuegenerators)

[![StyleCI](https://camo.githubusercontent.com/d4569847677d430b96bf0f4b1e8a510529d862dde31fd407b2ca6b03641ed24b/68747470733a2f2f7374796c6563692e696f2f7265706f732f3130313134343630332f736869656c643f6272616e63683d6d6173746572)](https://styleci.io/repos/101144603)

This Laravel package provides the following two generators to speed up your Vue development process:

- `make:vue-component`
- `make:vue-mixin`

Usage
-----

[](#usage)

### Step 1: Install Through Composer

[](#step-1-install-through-composer)

```
composer require laminblur/vue-generate
```

### Step 2: Add the Service Provider

[](#step-2-add-the-service-provider)

#### Laravel 5.5

[](#laravel-55)

Laravel's [Package Discovery](https://laravel.com/docs/5.5/packages#package-discovery) automatically discovers this package.

#### Laravel &lt; 5.5

[](#laravel--55)

Open `config/app.php`, and add a new item to the Package Service Providers array.

```
Laminblur\VueGenerate\VueGenerateServiceProvider::class,
```

### Step 3: Configuration (Optional)

[](#step-3-configuration-optional)

You may want to adjust your Component/Mixin stubs or change the path in which they are generated. To do this you simply need to publish the configuration file.

#### Laravel 5.5

[](#laravel-55-1)

```
php artisan vendor:publish
```

#### Laravel &lt; 5.5

[](#laravel--55-1)

```
php artisan vendor:publish --provider="Laminblur\VueGenerate\VueGenerateServiceProvider"
```

This will publish the following configuration file to `config/vue-generators.php`:

```
