Showing results for "vue"
lesson
Better testing with Vue Test Utils30 Days of VueToday, we'll look at Vue’s official testing library called [**Vue Test Utils**](https://vue-test-utils.vuejs.org/) that makes testing fun and relatively easy.
lesson
Testing the App30 Days of VueToday, we'll start creating unit tests by looking at a few features of our application, thinking about where the edge cases are and what we assume will happen with the component.
lesson
Implementing Tests30 Days of VueYesterday, we discussed the importance of testing and some of the different types of unit testing libraries/suites that exist. Today, we'll begin to see unit testing in action.
lesson
Introduction to Testing30 Days of VueTest suites are an upfront investment that pay dividends over the lifetime of a system. Today, we'll introduce the topic of testing and discuss the different types of tests we can write.
lesson
Project setup for building a Vue.js resumeInteractive Vue.js Resume BuilderHow to setup a Vue.js project. Use create-vue to generate a new project. Learn about folder and file structure in Vue.js.
lesson
Why you should learn Vue.jsInteractive Vue.js Resume BuilderGet an overview about Vue.js and learn about why Vue is a progressive framework, the different APIs, and the virual DOM.
lesson
Course introduction to "Build a Vue.js Resume"Interactive Vue.js Resume BuilderCourse introduction to "Build a Vue.js Resume". Prerequisites, course content, and a look at the final product.
lesson
How to Add Vue Router to an Application30 Days of VueWith our application scaffold established in the last article, let's use Vue's official client-side routing library, **Vue Router**, to enable routing in our application.
lesson
An Introdution to Routing in Vue with examples30 Days of VueThe majority of large-scale applications we tend to create will usually have multiple views be kept in different routes. Today, we'll discuss client-side routing and set up the starting point of the routing application we'll build.
lesson
How to Add Vuex to a Vue Application for State Management30 Days of VueWith the knowledge of the Flux pattern and Vuex, let's integrate Vuex onto a Vue application to build on top of the things we've learned using a simple global store.
lesson
How to Use Simple Global Store for Vue State Management30 Days of VueYesterday, we gathered an understanding of how a global EventBus can use its events interface to have isolated components communicate with one another. Today, we’ll see how a **Simple Global Store** can be a more useful approach to handling state management.