From 2fa368bea9b76fd2b761ac93bc84666abcdb27a9 Mon Sep 17 00:00:00 2001 From: sapics Date: Tue, 27 Oct 2015 10:53:13 +0900 Subject: [PATCH] Vue.js HackerNews Clone use vue-router instead of Director.js --- src/guide/application.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/guide/application.md b/src/guide/application.md index 033c4eb318..a35b9a494e 100644 --- a/src/guide/application.md +++ b/src/guide/application.md @@ -161,7 +161,7 @@ And you can test that module like this: ``` js // Some Jasmine 2.0 tests -describe('my-component', function () { +describe('my-component', function () { // require source module var myComponent = require('../src/my-component') it('should have a created hook', function () { @@ -216,4 +216,4 @@ NODE_ENV=production browserify -e main.js | uglifyjs -c -m > build.js ## An App Example -The [Vue.js Hackernews Clone](https://github.com/vuejs/vue-hackernews) is an example application that uses Webpack + vue-loader for code organization, Director.js for routing, and HackerNews' official Firebase API as the backend. It's by no means a big application, but it demonstrates the combined usage of the concepts discussed on this page. +The [Vue.js Hackernews Clone](https://github.com/vuejs/vue-hackernews) is an example application that uses Webpack + vue-loader for code organization, vue-router for routing, and HackerNews' official Firebase API as the backend. It's by no means a big application, but it demonstrates the combined usage of the concepts discussed on this page.