Applications à grande échelle avec Vue 3 et TypeScript
Applications à grande échelle avec Vue 3 et TypeScript
Créez des frontaux volumineux et évolutifs qui tirent parti de l'isolation des composants, de l'internationalisation, de la localisation, d'un magasin Vuex modulaire, de bibliothèques de composants personnalisés, d'un code client API qui peut facilement basculer entre les données simulées et les données en direct, etc.
À propos du livre
Créez des interfaces Vue 3 volumineuses et évolutives avec une grande base de code organisée facile à développer et à maintenir à l'aide de techniques telles que:
Développement de composants d'interface utilisateur de manière isolée à l'aide d'un client API qui peut facilement servir des données en direct ou des données simulées
Créer des bibliothèques de composants personnalisées
Un magasin Vuex modulaire organisé en domaines d'application
Internationalisation et localisation pour la traduction linguistique et le formatage des nombres / dates selon une culture spécifique
Vérification de type TypeScript au moment du développement pour réduire les bogues ou les erreurs d'exécution
Conventions de dénomination de la structure des répertoires, des fichiers et des codes
Tests unitaires pour les modèles et les composants
Et plus
Paquets
The Book
PDF
EPUB
WEB
Français
The Book: Team License
With this package you get 3 copies of the book, including any of its future updates.
PDF
EPUB
WEB
Français
The Book: Enterprise License
With this package you get 20 copies of the book, including any of its future updates.
PDF
EPUB
WEB
Français
Bundles that include this book
Table des matières
- Applications à grande échelle avec Vue 3 et TypeScript
-
Préface
- Remerciements
- Public
- Objectif
- Conventions de texte
- Conditions préalables
- Companion Code
-
Chapitre 1 - Configuration Du Projet Avec Vue-Cli
- Récapitulation du chapitre 1
-
Chapitre 2 - Votre Premier Composant
- La liste d’items
- Exigences De Composant ElementsList
- Code Du Composant ElementsList
- Home Vue
-
Mises à jour App.vue
- Récapitulation du chapitre 2
-
Chapitre 3 - Interfaces De Modèle De Données
- Répertoire Des Modèles
- Interface ItemInterface
- Composant ItemsList
-
Vue Home
- Récapitulation du chapitre 3
-
Chapitre 4 - Ajout D’événements Au Composant Items
- Composant ItemsList
- Récapitulation du chapitre 4
-
Chapitre 5 - Introduction Aux Tests Unitaires En Refactorisant Un Bit
- ItemComponent
- Tests unitaires ItemComponent
- Composant ItemsList
- Mises à jour de Home.vue
- Récapitulation du chapitre 5
-
Chapitre 6 - Introduction De Vuex
- Vuex Vue d’ensemble
- Store Du Vuex Principal (fichier: store/index.ts)
- Interface ItemsStateInterface
- Retour Au Fichier: store/index.ts
- Vue Home
- Navigateur Web
- ItemsList.component.vue
- Home.vue
- Navigateur Web
- Composant Loader
- Composant ItemsList
- Composant ItemsList - amélioration du gestionnaire de clics sur les items
- Store Vuex: Mutation selectItem
- Store Vuex: Action selectItem
- Récapitulation du chapitre 6
-
Chapitre 7 - Client Api
- Présentation Du Client API
- Domaines
- Le ApiClient principal
- Items Api Client
- Mock et Clients Api en direct
- Api Client Mock
- Live Api Client
- Factory Client Api
- Mises à jour de l’instance Vuex Store
- Des alternatives
- Récapitulation du chapitre 7
-
Chapitre 8 - Améliorer le client Api
- Interfaces et modèles HttpClient
- HttpClient Unit Tests
- Changements pour le ItemsApiClientModel
- Récapitulation du chapitre 8
-
Chapitre 9 - Modularisez le Vuex Store
- Instance actuelle de Vuex Store (src/store/index.ts)
- Modèles Store et State
- Instance de Store
- La syntaxe d’interpolation de chaîne de module/mutation laide
- La récapitulation
- Récapitulation du chapitre 9
-
Chapitre 10 - Localisation et internationalisation - Localisation des langues - Partie 1
- Plugin: vue-i18n
- Récapitulation du chapitre 10
-
Chapitre 11 - Localisation et internationalisation - Localisation des langues - Partie 2
- Le composant LocaleSelector
- Module Vuex pour les Locales
- Implémentation LocalesStateInterface
- LocaleSelector.component.vue
- LocaleFlagRadio.component.vue
- Fichier src/main.ts
- Fichier src/App.vue
- Navigateur Web
- Récapitulation du chapitre 11
-
Chapitre 12 - Localisation et internationalisation - Localisation des langues - Partie 3
- Localiser la navigation principale
- Localiser le composant Items
- Récapitulation du chapitre 12
-
Chapitre 13 - Localisation et internationalisation - Formats de nombre et de date / heure
- Mises à jour des fichiers de paramètres régionaux JSON
- Récapitulation du chapitre 13
-
Chapitre 14 - Configuration de l’application
- src/config
- tsconfig.json
- src/config/index.ts
- Tests unitaires par rapport à Config
- Récapitulation du chapitre 14
-
Chapitre 15 - Utilisation des packages CSS/SASS/SCSS
- SCSS Library
- Mise à jour du code du plugin Flag-Icons
- Plugin MyAppScss
- Composant ThemeSelector
- Récapitulation du chapitre 15
-
Chapitre 16 - Création de composants autonomes
- Supprimer le code ThemeSelector existant
- Créer le répertoire Components-Standalone
- Créer le répertoire ThemeSelector
- CCréer les modèles ThemeSelector
- Créer les Custom Store Models ThemeSelector
- Clés constantes pour localStorage
- Créer le composant ThemeSelector
- Modifier le code App.vue
- Récapitulation du chapitre 16
-
Chapitre 17 - Bibliothèques de composants d’empaquetage pour la distribution
- Mises à jour de my-projet
- Récapitulation du chapitre 17
-
Chapitre 18 - Introduction aux primitifs
- Atomic Design (Conception atomique) et approches similaires
- Conventions
- Stratégies générales
- TailwindCSS
- Éléments de texte
- Vue des primitives
- Récapitulation du chapitre 18
-
Chapitre 19 - Primitives continues
- Éléments de bouton
- Vue des primitives - mise à jour
- Éléments Toggle/Checkbox
- Vue des primitives - encore une mise à jour
- Récapitulation du chapitre 19
-
Chapitre 20 - Composants de niveau supérieur
- Composant Item - mises à jour
- Composant ItemsList - mises à jour
- Résumé
- Récapitulation du chapitre 20
-
Chapitre 21 - Composants dynamiques
- Élément Card de base
- Composant BaseWidget
- Composant CustomersWidget
- Composant OrdersWidget
- Composant ItemsListWidget
- Fichier WidgetsCatalog.ts
- Composant WidgetsContainer, Modèles et state
- Vue du Widgets Playground Viw
- Navigateur Web
- Résumé
- Le fichier Vue.config.js
-
Conventions de nommage
- Normes de codage
- Notes
Aucun risque ! Satisfait ou remboursé !
Durant les 60 jours suivant l'achat, vous pouvez obtenir un remboursement à 100% de la part de Leanpub, en moins de deux clics. Nous traitons les remboursements manuellement, un délai de quelques jours est nécessaire. Voir nos conditions générales.
Réussir. Faire du bien.
Les auteurs on gagné$11,815,072en écrivant, publiant et vendant sur Leanpub, percevant 80% de royalties tout en économisant jusqu'à 25 millions de livres de C02 et jusqu'à 46,000 arbres.
En savoir plus sur l'écriture sur Leanpub
Mises à jour gratuit. Sans DRM.
Si vous achetez un livre Leanpub, vous obtenez des mises à jour gratuit tant que l'auteur met à jour le livre ! De nombreux auteurs utilisent Leanpub pour publier leurs livres en cours, lorsqu'ils les écrivent. Tous les lecteurs obtiennent les mises à jour gratuites, quel que soit le moment où ils ont acheté le livre ou combien ils ont payé (même s'ils étaient gratuits).
La plupart des livres Leanpub sont disponibles en format PDF (pour les ordinateurs) et EPUB (pour les téléphones, les tablettes, et les Kindles). Les formats inclus sont affichés dans le coin droit supérieur de cette page.
Finalement, les livres Leanpub n'ont pas de DRM, d'abord vous pouvez toujour les lire facilement sur n'importe quel appareil pris en charge.
En savoir plus sur les formats des livres ebook de Leanpub et où les lire
Top Books
Stratospheric
Tom Hombergs, Björn Wilmsmann, and Philip RiecksFrom Zero to Production with Spring Boot and AWS. All you need to know to get a Spring Boot application into production with AWS. No previous AWS knowledge required.
Go to stratospheric.dev for a tour of the contents.
C++20 - The Complete Guide
Nicolai M. JosuttisAll new language and library features of C++20 (for those who know previous C++ versions).
The book presents all new language and library features of C++20. Learn how this impacts day-to-day programming, to benefit in practice, to combine new features, and to avoid all new traps.
Buy early, pay less, free updates.
Other books:
OpenIntro Statistics
David Diez, Christopher Barr, Mine Cetinkaya-Rundel, and OpenIntroA complete foundation for Statistics, also serving as a foundation for Data Science.
Leanpub revenue supports OpenIntro (US-based nonprofit) so we can provide free desk copies to teachers interested in using OpenIntro Statistics in the classroom and expand the project to support free textbooks in other subjects.
More resources: openintro.org.
node-opcua by example
Etienne RossignonGet the best out of node-opcua through a set of documented examples by the author himself that will allow you to create stunning OPCUA Servers or Clients.
Advanced Web Application Architecture
Matthias NobackThe missing manual for making your web applications future-proof
Jetpack Compose internals
Jorge CastilloJetpack Compose is the future of Android UI. Master how it works internally and become a more efficient developer with it. You'll also find it valuable if you are not an Android dev. This book provides all the details to understand how the Compose compiler & runtime work, and how to create a client library using them.
Ansible for DevOps
Jeff GeerlingAnsible is a simple, but powerful, server and configuration management tool. Learn to use Ansible effectively, whether you manage one server—or thousands.
R Programming for Data Science
Roger D. PengThis book brings the fundamentals of R programming to you, using the same material developed as part of the industry-leading Johns Hopkins Data Science Specialization. The skills taught in this book will lay the foundation for you to begin your journey learning data science. Printed copies of this book are available through Lulu.
Maîtriser Apache JMeter
Philippe Mouawad, Bruno Demion (Milamber), and Antonio Gomes RodriguesToute la puissance d'Apache JMeter expliquée par ses commiteurs et utilisateurs experts. De l'intégration continue en passant par le Cloud, vous découvrirez comment intégrer JMeter à vos processus "Agile" et Devops.
If you're looking for the newer english version of this book, go to Master JMeter : From load testing to DevOps
D3 Start to Finish
Peter CookD3 Start to Finish shows you how to build a custom, interactive and beautiful data visualisation using the JavaScript library D3.js (versions 6 & 7).
The book covers D3.js concepts such as selections, joins, requests, scale functions, events & transitions. You'll put these concepts into practice by building a custom, interactive data visualisation.
Top Bundles
- #1
CCIE Service Provider Ultimate Study Bundle
2 Books
Piotr Jablonski, Lukasz Bromirski, and Nick Russo have joined forces to deliver the only CCIE Service Provider training resource you'll ever need. This bundle contains a detailed and challenging collection of workbook labs, plus an extensively detailed technical reference guide. All of us have earned the CCIE Service Provider certification... - #2
Software Architecture
2 Books
"Software Architecture for Developers" is a practical and pragmatic guide to modern, lightweight software architecture, specifically aimed at developers. You'll learn:The essence of software architecture.Why the software architecture role should include coding, coaching and collaboration.The things that you really need to think about before... - #4
Pattern-Oriented Memory Forensics and Malware Detection
2 Books
This training bundle for security engineers and researchers, malware and memory forensics analysts includes two accelerated training courses for Windows memory dump analysis using WinDbg. It is also useful for technical support and escalation engineers who analyze memory dumps from complex software environments and need to check for possible... - #7
Retromat eBook Bundle for Agile Retrospectives
2 Books
If you facilitate retrospectives this bundle is for you: "Plans for Retrospectives" helps beginners learn the lay of the land with tried-and-true plans. Once you know your way around, "Run great agile retrospectives" contains all 135+ activities in Retromat for you to mix and match. - #8
Static Analysis and Automated Refactoring
2 Books
As PHP developers we are living in the "Age of Static Analysis". We can use a tool like PHPStan to learn about potential bugs before we ship our code to production, and we can enforce our team's programming standards using custom PHPStan rules. Recipes for Decoupling by Matthias Noback teaches you in great detail how to do this, while also... - #10
Practical FP in Scala + Functional event-driven architecture
2 Books
Practical FP in Scala (A hands-on approach) & Functional event-driven architecture, aka FEDA, (Powered by Scala 3), together as a bundle! The content of PFP in Scala is a requirement to understand FEDA so why not take advantage of this bundle!?