1.0.2 • Published 8 years ago

laravel-elixir-vueify-next v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
8 years ago

Vue 2.0 WIP Guide

It's still in progress, but you can refer it at: https://github.com/vuejs/vuejs.org/tree/2.0/src/guide

Usage

Step 1: Install

npm install laravel-elixir-vueify-next

Step 2: Require

Within your main Gulpfile, add:

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

require('laravel-elixir-vueify-next');

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

Notice above, where we require laravel-elixir-vueify-next. 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.