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 it works...

When working in a component or when programming in general, it's much better to reduce the scope of the code to only one layer of abstraction. When we write a computed function that returns the final capital value, we should only worry about calling the right function--the one that does the right calculation for our purpose. The internals of the formula are on a lower layer of abstraction and we don't want to deal with that.

What we have done is that we brought all the nitty gritty of the calculations in a separate file. We then exported the function from the file with the following line:

export default function (Principal, yearlyRate, years) {...

This makes the function available by default when we import the file from ...

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