The majesty of Vue.js / (Record no. 2809772)

MARC details
000 -LEADER
fixed length control field 07911cam a2200745Ii 4500
001 - CONTROL NUMBER
control field ocn965383372
003 - CONTROL NUMBER IDENTIFIER
control field OCoLC
005 - DATE AND TIME OF LATEST TRANSACTION
control field 20220712044128.0
006 - FIXED-LENGTH DATA ELEMENTS--ADDITIONAL MATERIAL CHARACTERISTICS--GENERAL INFORMATION
fixed length control field m o d
007 - PHYSICAL DESCRIPTION FIXED FIELD--GENERAL INFORMATION
fixed length control field cr unu||||||||
008 - FIXED-LENGTH DATA ELEMENTS--GENERAL INFORMATION
fixed length control field 161206s2016 enka o 000 0 eng d
040 ## - CATALOGING SOURCE
Original cataloging agency UMI
Language of cataloging eng
Description conventions rda
-- pn
Transcribing agency UMI
Modifying agency IDEBK
-- STF
-- DEBBG
-- FEM
-- OCLCF
-- COO
-- EBLCP
-- MERUC
-- OCLCQ
-- VT2
-- UOK
-- CEF
-- KSU
-- NLE
-- UKMGB
-- WYU
-- OCLCQ
-- LVT
-- N$T
-- AGLDB
-- IGB
-- AUW
-- BTN
-- INTCL
-- MHW
-- SNK
-- UKAHL
-- NLW
-- OCLCQ
-- K6U
-- OCLCQ
-- OCLCO
016 7# - NATIONAL BIBLIOGRAPHIC AGENCY CONTROL NUMBER
Record control number 018135864
Source Uk
019 ## -
-- 963606727
-- 967392325
-- 968005246
-- 969069397
020 ## - INTERNATIONAL STANDARD BOOK NUMBER
International Standard Book Number 9781787125209
Qualifying information (electronic bk.)
020 ## - INTERNATIONAL STANDARD BOOK NUMBER
International Standard Book Number 1787125203
Qualifying information (electronic bk.)
020 ## - INTERNATIONAL STANDARD BOOK NUMBER
Cancelled/invalid ISBN 9781787124370
020 ## - INTERNATIONAL STANDARD BOOK NUMBER
Cancelled/invalid ISBN 1787124371
029 1# - (OCLC)
OCLC library identifier CHNEW
System control number 000949239
029 1# - (OCLC)
OCLC library identifier CHVBK
System control number 483154148
029 1# - (OCLC)
OCLC library identifier DEBBG
System control number BV043970669
029 1# - (OCLC)
OCLC library identifier DEBSZ
System control number 48581143X
029 1# - (OCLC)
OCLC library identifier GBVCP
System control number 876250088
029 1# - (OCLC)
OCLC library identifier UKMGB
System control number 018135864
035 ## - SYSTEM CONTROL NUMBER
System control number (OCoLC)965383372
Canceled/invalid control number (OCoLC)963606727
-- (OCoLC)967392325
-- (OCoLC)968005246
-- (OCoLC)969069397
037 ## - SOURCE OF ACQUISITION
Stock number CL0500000805
Source of stock number/acquisition Safari Books Online
050 #4 - LIBRARY OF CONGRESS CALL NUMBER
Classification number QA76.73.J39
072 #7 - SUBJECT CATEGORY CODE
Subject category code COM
Subject category code subdivision 060080
Source bisacsh
072 #7 - SUBJECT CATEGORY CODE
Subject category code COM
Subject category code subdivision 060160
Source bisacsh
072 #7 - SUBJECT CATEGORY CODE
Subject category code COM
Subject category code subdivision 051260
Source bisacsh
082 04 - DEWEY DECIMAL CLASSIFICATION NUMBER
Classification number 005.2762
Edition number 23
049 ## - LOCAL HOLDINGS (OCLC)
Holding library MAIN
100 1# - MAIN ENTRY--PERSONAL NAME
Personal name Kyriakidis, Alex,
Relator term author.
9 (RLIN) 1138620
245 14 - TITLE STATEMENT
Title The majesty of Vue.js /
Statement of responsibility, etc Alex Kyriakidis, Kostas Maniatis.
264 #1 -
-- Birmingham, UK :
-- Packt Publishing,
-- 2016.
300 ## - PHYSICAL DESCRIPTION
Extent 1 online resource (1 volume) :
Other physical details illustrations
336 ## -
-- text
-- txt
-- rdacontent
337 ## -
-- computer
-- c
-- rdamedia
338 ## -
-- online resource
-- cr
-- rdacarrier
347 ## -
-- text file
588 0# -
-- Online resource; title from cover (Safari, viewed December 6, 2016).
520 ## - SUMMARY, ETC.
Summary, etc Create fast front-end applications and increase the performance of your existing projects with Vue.js integrationAbout This Book Learn about computed properties, components, filters, routing, ES6, and workflow automation This book will show you how easy Vue.js is to grasp, and that its integration can save you a lot of time and effort This book will guide you through the path of the rapidly spreading JavaScript Framework Vue.jsWho This Book Is For This book is for anyone interested in learning to use a lightweight and simple JavaScript framework. No excessive knowledge is required, though it would be good to be familiar with HTML and JavaScript. This book is also useful for those who already know their way around Vue.js and want to expand their knowledge. What You Will Learn Get to know the fundamentals of Vue.js Consume an API using Vue Resource Explore components, filters, methods, and computed properties are and find out how to use them to build robust applications Break your applications into Single File Components Build Single Page Applications using Vue Router Automate your workflow using Vue.jsIn Detail Vue.js is a library to build interactive web interfaces. The aim is to provide the benefits of reactive data binding and composable view components with an API that is as simple as possible. This book will teach you how to efficiently implement Vue.js in your projects. It starts with the fundamentals of Vue.js to building large-scale applications. You will find out what components, filters, methods, and computed properties are and how to use them to build robust applications. Further on, you will become familiar with ES6, single file components, module bundlers, and workflow automation. The best way to learn to code is to write it, so there's an exercise at the end of most of the chapters for you to solve and actually test yourself on what you have learned. You can solve these in order to gain a better understanding of Vue.js. By the end of this book, you will be able to create fast front-end applications and increase the performance of your existing projects with Vue.js integration. Style and approach The book is written in an informal, intuitive, and easy-to-follow format, and all examples are detailed enough to provide adequate guidance to everyone.
505 0# - FORMATTED CONTENTS NOTE
Formatted contents note Cover; Credits; About the Authors; www.PacktPub.com; Table of Contents; Preface; Chapter 1: Install Vue.js; Standalone version; Downloading from vuejs.org; Include from CDN; Downloading using NPM; Downloading using Bower; Chapter 2: Getting Started; Hello Vue; Two-way binding; Comparison with jQuery; Homework; Chapter 3: A Flavor of Directives; v-show; v-if; Template v-if; v-else; v-if versus v-show; Homework; Chapter 4: List Rendering; Installing and using Bootstrap; v-for; Range v-for; Array rendering; Looping through an array; Looping through an array of objects; Object v-for
505 8# - FORMATTED CONTENTS NOTE
Formatted contents note Filtered resultsOrdered results; Custom filter; Homework; Chapter 5: Interactivity; Event handling; Handling events inline; Handling events using methods; Shorthand for v-on; Event modifiers; Key modifiers; Computed properties; Using computed properties to filter an array; Homework; Chapter 6: Components; What are Components?; Using Components; Templates; Properties; Reusability; Altogether now; Homework; Chapter 7: Class and Style Bindings; Class binding; Object syntax; Array syntax; Style binding; The object syntax; The array syntax; Bindings in action; Homework
505 8# - FORMATTED CONTENTS NOTE
Formatted contents note Chapter 8: Consuming an API -- PrefaceCRUD; API; Download book's code; API endpoints; Chapter 9: Working with Real Data; Geting data asynchronously; Refactoring; Updating data; Deleting data; Chapter 10: Integrating vue-resource; Overview; Migrating; Enhancing functionality; Editing stories; Creating new stories; Storing and updating unit; JavaScript file; Source code; Homework; Preface; API endpoints; Your code; Chapter 11: Pagination; Implementation; Pagination links; Homework; Chapter 12: ECMAScript 6; ES6 features; Compatibility; Variable declarations; let declarations
505 8# - FORMATTED CONTENTS NOTE
Formatted contents note Constant declarationsArrow functions; Modules; Classes; Default parameter values; Chapter 13: Advanced Workflow; Compiling ES6 with Babel; Installation; Configuration; Build alias; Usage; Homework; Workflow automation with Gulp; Task runners; Installation; Usage; Watch; Homework; Module bundling with Webpack; Module bundlers; Webpack; Installation; Usage; Automation; Summary; Chapter 14: Mastering Single File Components; vue-cli; Vue's templates; Installation; Usage; Webpack template; Project structure; index.html; Hello.vue; App.vue; main.js; Forming .vue files; [Nested components]
505 8# - FORMATTED CONTENTS NOTE
Formatted contents note Nested componentsChapter 15: Swapping Components; Dynamic components; The is component; Navigation; Chapter 16: Vue Router; Installation; Usage; Nested routes; Route matching; Named routes; Route object; Dynamic segments; Route alias; Route go; Filtering transitions; Homework; Chapter 17: Further Learning; Tutorials; Videos; Books; Open source projects; Chapter 18: Closing Thoughts; Index
590 ## - LOCAL NOTE (RLIN)
Local note eBooks on EBSCOhost
Provenance (VM) [OBSOLETE] EBSCO eBook Subscription Academic Collection - Worldwide
650 #0 - SUBJECT ADDED ENTRY--TOPICAL TERM
Topical term or geographic name as entry element JavaScript (Computer program language)
9 (RLIN) 119291
650 #0 - SUBJECT ADDED ENTRY--TOPICAL TERM
Topical term or geographic name as entry element Web site development.
9 (RLIN) 66365
650 #6 - SUBJECT ADDED ENTRY--TOPICAL TERM
Topical term or geographic name as entry element JavaScript (Langage de programmation)
9 (RLIN) 889198
650 #6 - SUBJECT ADDED ENTRY--TOPICAL TERM
Topical term or geographic name as entry element Sites Web
General subdivision Développement.
650 #7 - SUBJECT ADDED ENTRY--TOPICAL TERM
Topical term or geographic name as entry element COMPUTERS
General subdivision Web
-- General.
Source of heading or term bisacsh
9 (RLIN) 866356
650 #7 - SUBJECT ADDED ENTRY--TOPICAL TERM
Topical term or geographic name as entry element COMPUTERS
General subdivision Web
-- Web Programming.
Source of heading or term bisacsh
650 #7 - SUBJECT ADDED ENTRY--TOPICAL TERM
Topical term or geographic name as entry element COMPUTERS
General subdivision Programming Languages
-- JavaScript.
Source of heading or term bisacsh
9 (RLIN) 916597
650 #7 - SUBJECT ADDED ENTRY--TOPICAL TERM
Topical term or geographic name as entry element JavaScript (Computer program language)
Source of heading or term fast
-- (OCoLC)fst00982071
9 (RLIN) 119291
650 #7 - SUBJECT ADDED ENTRY--TOPICAL TERM
Topical term or geographic name as entry element Web site development.
Source of heading or term fast
-- (OCoLC)fst01173243
9 (RLIN) 66365
655 #4 - INDEX TERM--GENRE/FORM
Genre/form data or focus term Electronic books.
700 1# - ADDED ENTRY--PERSONAL NAME
Personal name Maniatis, Kostas,
Relator term author.
9 (RLIN) 1138621
856 40 - ELECTRONIC LOCATION AND ACCESS
Uniform Resource Identifier <a href="https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=1421552">https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=1421552</a>
938 ## -
-- Askews and Holts Library Services
-- ASKH
-- AH32042362
938 ## -
-- EBSCOhost
-- EBSC
-- 1421552
938 ## -
-- ProQuest MyiLibrary Digital eBook Collection
-- IDEB
-- cis36979459
994 ## -
-- 92
-- INOPJ
Holdings
Withdrawn status Lost status Damaged status Not for loan Collection code Home library Current library Date acquired Total Checkouts Date last seen Price effective from Koha item type
        E-Books EBSCO OPJGU Sonepat- Campus OPJGU Sonepat- Campus 12/07/2022   12/07/2022 12/07/2022 Electronic-Books

O.P. Jindal Global University, Sonepat-Narela Road, Sonepat, Haryana (India) - 131001

Send your feedback to glus@jgu.edu.in

Hosted, Implemented & Customized by: BestBookBuddies   |   Maintained by: Global Library