PHPackages                             beckenrode/vue-generators - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. beckenrode/vue-generators

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

beckenrode/vue-generators
=========================

Laravel Vue Generators

v1.0.2(8y ago)41.6k1MITPHP

Since Aug 23Pushed 8y ago1 watchersCompare

[ Source](https://github.com/beckenrode/vue-generators)[ Packagist](https://packagist.org/packages/beckenrode/vue-generators)[ RSS](/packages/beckenrode-vue-generators/feed)WikiDiscussions master Synced yesterday

READMEChangelog (3)Dependencies (1)Versions (4)Used By (0)

Laravel Vue Generators
======================

[](#laravel-vue-generators)

[![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 beckenrode/vue-generator
```

### 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.

```
Beckenrode\VueGenerators\VueGeneratorsServiceProvider::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="Beckenrode\VueGenerators\VueGeneratorsServiceProvider"
```

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

```
