Book Image

Vue.js 2 Academy: Learn Vue Step by Step [Video]

By : Chris Dixon
Book Image

Vue.js 2 Academy: Learn Vue Step by Step [Video]

By: Chris Dixon

Overview of this book

Vue.js is a fun and easy-to-use JavaScript framework for building user interfaces. From easily adding it to an existing website or application to just control a part of it, such as adding new components, through to using it for medium or large single-page applications, you can improve productivity in several ways. The course will guide you through building two challenging yet exciting projects, which will help you apply everything you learn. You’ll begin with a guest list app where users can add their name to an event guest list. Although this is a simple app, you’ll learn several Vue.js essentials while building it such as two-way data binding, event handling, templates and the Virtual DOM, and instance properties - data, computed, watchers, methods, and filters. You will then build on your knowledge by creating a greeting card application where users can create and edit their custom greeting card. They will be able to add their text and images to create a personalised card. This project will get you up to speed with components (local, global, and single file), installing Node and NPM, passing data with $emit, and storing and retrieving images from Firebase. In addition to this, you’ll make use of Vue CLI to scaffold your projects with build tools such as Webpack and Babel. By the end of this course, you will be well-versed with Vue.js and have gained hands-on experience in applying it effectively in your projects. All the code files are placed at https://github.com/PacktPublishing/Vue.js-2-Academy-Learn-Vue-Step-by-Step
Table of Contents (8 chapters)
Free Chapter
1
Introduction & Getting Started
8
Thank You
Chapter 6
Components Continued & Firebase Storage: Creative Cards App
Content Locked
Section 19
Introduction to the event bus
When looking at components in this last few sections, we have looked at how parent-child components can communicate. We know we pass data from the child to the parent with custom events. Also, we know we pass data back from the parent to the child using props. This works well if the components which are to communicate are only 1 level apart like so far in the app. For example, the text input and output components are direct children of card front. This makes communication easy to achieve. However, there are often circumstances where components are nested 2 or more levels apart and need to communicate. This is common as our app grows. For this vue js provides a solution called the event bus.