All Projects → JeffreyWay → Laravel Elixir Vueify

JeffreyWay / Laravel Elixir Vueify

This is a very thin wrapper for Laravel Elixir and the Browserify Vueify plugin.

Programming Languages

javascript
184084 projects - #8 most used programming language

Usage

Step 1: Install

If you're using Laravel Elixir 5 or below:

npm install [email protected]

Otherwise, for Laravel Elixir 6 installs and up:

npm install laravel-elixir-vueify

Step 2: Require

Within your main Gulpfile, add:

var elixir = require('laravel-elixir');

require('laravel-elixir-vueify');

elixir(function(mix) {
    mix.browserify('main.js');
});

Notice above, where we require laravel-elixir-vueify. That's all you need. Behind the scenes, all of the necessary dependencies have been installed, and Vueify has been inserted into Laravel Elixir's Browserify transformers list.

Step 3. Build Amazing Things

You're done. :)

Having trouble? Here's a starter example site that uses Laravel Elixir, Browserify, and Vueify.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].