Cargando…

Learning Vue.js 2 /

Annotation

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Filipova, Olga (Autor)
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Birmingham : Packt Publishing, 2016.
Temas:
Acceso en línea:Texto completo
Tabla de Contenidos:
  • Cover ; Copyright; Credits; About the Author; Acknowledgments; About the Reviewer; www.PacktPub.com; Table of Contents; Preface; Chapter 1: Going Shopping with Vue.js; Buzzwords; Vue.js history; The most important thing about Vue.js; Let's go shopping!; Implementing a shopping list using jQuery; Implementing a shopping list using Vue.js; Analyzing data binding using developer tools; Bringing user input to the data with two-way binding; Rendering the list of items using the v-for directive; Check and uncheck shopping list items; Adding new shopping list items using the v-on directive.
  • Using Vue.js in an existing projectVue.js 2.0!; Projects using Vue.js; Grammarly; Optimizely; FilterBlend; PushSilver; Book roadmap; Let's manage time!; Toggle the title by using computed properties; Left-pad time values using computed properties; Keep state with start, pause, and stop buttons; Exercise; Summary; Chapter 2: Fundamentals
  • Installing and Using; MVVM architectural pattern; DefineProperty, getters, and setters; Comparing with other frameworks; React; Angular; Vue; Vue.js fundamentals; Reusable components; Vue.js directives; Plugins in Vue.js; Exercise; Application state and Vuex.
  • Vue-cliVue plugins for IDEs; Installing, using, and debugging a Vue.js application; Installing Vue.js; Standalone; CDN; Bower; CSP-compliant; npm; vue-cli; Dev build; Debugging your Vue application; Scaffolding our applications; Scaffolding the shopping list application; Bootstraping your Pomodoro application; Exercise; Summary; Chapter 3: Components
  • Understanding and Using; Revisiting components; Benefits of using components; Declaring templates in HTML; Handling data and el properties inside a component; Scope of the components; Components inside other components.
  • Rewriting the shopping list with simple componentsDefining templates for all the components; Defining and registering all the components; Exercise; Single-file components; Plugins for IDEs; Style and scope; Hot-reloading; Preprocessors; HTML preprocessors; CSS preprocessors; JavaScript preprocessors; Rewriting our shopping list application with single-file components; AddItemComponent; Configuring ItemComponent and ItemsComponent; Exercise; Rewriting the Pomodoro application with single-file components; Reactive binding of CSS transitions; Summary.
  • Chapter 4: Reactivity
  • Binding Data to Your ApplicationRevisiting data binding; Interpolating data; Adding title of the Pomodoro state; Exercise; Using expressions and filters; Expressions; Filters; Exercise; Revisiting and applying directives; Two-way binding using the v-model directive; Two-way binding between components; Binding attributes using the v-bind directive; Conditional rendering using v-if and v-show directives; Array iteration using the v-for directive; Creating ShoppingListComponent and modifying ItemsComponent; Modifying App.vue; Event listeners using the v-on directive.