­
tips

Real life tips for using Vue.Js

Thursday, November 26, 2015
It took me some convincing to see the point of using an MV* JS framework, and I haven’t looked back since. Vue.js is a front-end Javascript library with inspiration from Angular.js. The power of Vue.js is in it’s reactive data model. This means changes to a data property update in real-time in both the UI and application state - hiding and showing page...

Read More...

authentication

Build an App with Vue.js: From Authentication to Calling an API

Wednesday, November 25, 2015
There are a ton of great JavaScript frameworks out there, and it can be a little overwhelming to keep up with them all. The learning curve for these frameworks can also be a bit steep. Vue.js is a breath of fresh air in this regard. In this tutorial, we'll see how easy it is to get up and running with a Vue.js app...

Read More...

podcast

Evan You - Diving Deep into Vue.js

Tuesday, November 24, 2015
In this episode, Adam talks to Evan You, the creator of Vue.js. Evan talks about his time at Google Creative Lab and the sort of work that inspired him to create Vue. He also explains in depth how data binding works in Vue, and how it's different and more performant than Angular. Additionally, Evan discusses the benefits of Vue over React, why Vue works so...

Read More...

component

VUI - Resuable UI components, built with Vue.JS.

Friday, November 20, 2015
Resuable UI components, built with Vue. Each component contains one or more properties, with v-bind support. Buttons Block Button Menu Button Progress Button Avatar Circle Avatar Squared Avatar Toggle Toggle for iOS Toggle for Android Range Slider Pure Range Range with Labels Range for iOS Range for Android Radio Radio as Group READ MORE ...

Read More...

tutorial

Vue.js Tutorial

Thursday, November 19, 2015
Vue.js shares similar concepts to other popular JavaScript frameworks like Rivet.js, Ractive.js, Angular.js, and Knockout.js. These types of frameworks offter a structural outline for interactive web applications. Raw HTML acts as the templating language, while these frameworks extend the syntax to provide data binding and User Interface data modeling. Vue.js strives to make working with these types of frameworks as simple and functional...

Read More...

tutorial

Learning Vue 1.0: Step By Step

Wednesday, November 18, 2015
Mark my words: Vue.js will sky-rocket in popularity in 2016. It's that good. Want to get ahead of the pack? Let me show you the building blocks of Vue. SERIES LESSONS Hello Databinding Vue Show  Event Handling  A Peek into Components  Computed Properties  Subscription Plans Exercise  WATCH VIDEO SERIES ...

Read More...

debugging

vue-devtools | Chrome devtools extension for debugging Vue.js applications.

Tuesday, November 17, 2015
The new vue-devtools only works with Vue.js 1.0.0+. The devtool will only work with non-minified versions of Vue, because the devtools hooks are stripped in production builds. This also includes builds produced by Webpack and Browserify in production mode. Devtools cannot access pages via file:// protocol. You need to serve the page over HTTP in order to use it. READ MORE GET IT...

Read More...

news

Vue.JS 1.0.8 is out

Monday, November 16, 2015
New Added support for pre-defined getters/setters on data objects. This feature is off by default and must be turned on by setting Vue.config.convertAllProperties = true, since it comes with a small performance cost. v-on key modifiers now also support all single letters. props options now supports using prop objects in array syntax again. Fixed Observer should no longer throw errors when trying to...

Read More...

Comparison

JS Comparison: Angular vs. React vs. Vue

Sunday, November 15, 2015
Angular.js, React.js and Vue.js are popular front end technologies often pitted against each other. They are not technical equivalents, but a comparison among them is still valid. Vue is the new-comer and aims to merge the best bits of Angular and React: It aims to be performant and a complete, easy to use package. It's been gaining some momentum as Pagekit and other...

Read More...

file

Create a GitHub File Explorer Using Vue.js

Sunday, November 15, 2015
Vue.js makes everything easy. Creating seemingly complex applications becomes super simple and is something that can be done in much less time than previously. We will demonstrate this by creating a Github file explorer that will allow us to explore files in public Github repos. The repo for this post has a good starting point tagged. We need to pull the code down...

Read More...

tutorial

LET'S TALK VUEJS

Saturday, November 14, 2015
If you have been following the Laravel community, you should have heard of Vuejs by now. Vuejs is a powerful javascript framework that can be used in conjunction with other javascript frameworks. Vuejs is not a full replacement but opens up a new world of possibilities. Vuejs is just a single javascript file. When you are developing with Vuejs you will want to...

Read More...

component

VueJS Library For Developing JavaScript Component

Friday, November 13, 2015
Vue.js library is a framework for developing Web interfaces. Vue.js library is developed on Model and View relation and binded by 2 way data binding. In this Demo,”We will learn to install Vue.js library and develop a custom component”. Vue.js library can be installed using npm install vue –save command.The following screenshot shows the terminal with VueJS installation. READ MORE DEMO ...

Read More...

news

VueServer.js | Vue.js server-side version

Thursday, November 12, 2015
This is not an offical Vue.js version and it has no straight relation to it and its author. The module is developed for specific needs of its authors and has some restrictions compared to Vue.js. VueServer.js is designed for static HTML rendering. It has no real reactivity. Also, the module is not running original Vue.js on server. It has its own implementation. It...

Read More...