Skip to Content
Vue.js 2 Cookbook
book

Vue.js 2 Cookbook

by Andrea Passaglia
April 2017
Intermediate to advanced
454 pages
12h 51m
English
Packt Publishing
Content preview from Vue.js 2 Cookbook

How to do it…

As said, we will edit the resulting code from the Fetching data before switching route recipe to manage errors. Just so you remember, when going to the /aboutme page, we were loading information from the Internet. We want to avoid going to that page in case the information is not available.

For this recipe, add Axios as a dependency, as done in the previous recipes.

First, enrich the HTML layout with the highlighted code:

<div id="app">  <h1>My Portfolio</h1>  <ul>    <li><router-link to="/" exact>Home</router-link></li>    <li><router-link to="/aboutme">About Me</router-link></li>  </ul>  <router-view></router-view>  <div class="toast" v-show="showError">    There was an error  </div></div>

This is a toast message that will appear on the ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Learning Vue.js 2

Learning Vue.js 2

Olga Filipova
Pro Vue.js 2

Pro Vue.js 2

Adam Freeman

Publisher Resources

ISBN: 9781786468093Supplemental Content