Этот материал находится в платной подписке. Оформи премиум подписку и смотри или слушай The Vue 3 Bootcamp - The Complete Developer Guide, а также все другие курсы, прямо сейчас!
Премиум
  • Урок 1. 00:03:06
    Introduction
  • Урок 2. 00:03:42
    A Little Bit of Setup
  • Урок 3. 00:02:41
    What is VueJS
  • Урок 4. 00:04:19
    Building the HTML Template
  • Урок 5. 00:03:27
    Styling Our App With CSS
  • Урок 6. 00:09:12
    Making it Functional With JavaScript
  • Урок 7. 00:04:03
    Creating a Vue App
  • Урок 8. 00:08:08
    Rebuilding the App in Vue
  • Урок 9. 00:04:21
    Vue vs Vanilla JS
  • Урок 10. 00:09:05
    Installing Needed Dependencies
  • Урок 11. 00:04:52
    Spinning Up a Vue Development Server
  • Урок 12. 00:05:07
    Some Important Terminologies
  • Урок 13. 00:06:11
    Creating HTML With Vue Templates
  • Урок 14. 00:05:07
    Styling Our App
  • Урок 15. 00:04:16
    Accessing Variables Within Our HTML
  • Урок 16. 00:05:48
    Adding Event Handlers
  • Урок 17. 00:06:27
    Defining Our Variable as State
  • Урок 18. 00:08:32
    Composition API vs Options API
  • Урок 19. 00:02:34
    App Overview
  • Урок 20. 00:19:12
    [OPTIONAL] Building the HTML and CSS
  • Урок 21. 00:08:21
    Conditional Rendering With v-if
  • Урок 22. 00:06:26
    Two Way Binding With v-model
  • Урок 23. 00:10:44
    Event Handling By Creating a New Note
  • Урок 24. 00:08:53
    Iteratively Rendering DOM Elements With v-for
  • Урок 25. 00:04:16
    The Importances of a Key
  • Урок 26. 00:09:33
    Adding Error Handling
  • Урок 27. 00:03:26
    App Overview
  • Урок 28. 00:10:59
    [OPTIONAL] The HTML and CSS
  • Урок 29. 00:05:10
    List Card Rendering
  • Урок 30. 00:06:09
    Watching For State Changes
  • Урок 31. 00:09:49
    Separating Our Code Into Components
  • Урок 32. 00:06:02
    Passing Data to Components via Props
  • Урок 33. 00:04:25
    Introduction to Routing
  • Урок 34. 00:02:35
    Creating a New App
  • Урок 35. 00:03:26
    Creating Two View Components
  • Урок 36. 00:10:17
    Adding Routing to Our App
  • Урок 37. 00:07:52
    RouterLink to Navigate Within the App
  • Урок 38. 00:03:30
    Styling the Active RouterLink
  • Урок 39. 00:13:05
    Pages With Dynamic Paths
  • Урок 40. 00:05:14
    Extracting the Path Params
  • Урок 41. 00:11:24
    The Powers of Nested Routes
  • Урок 42. 00:05:57
    Programmatically Adjust the Route
  • Урок 43. 00:09:08
    Adding 404 Not Found Pages
  • Урок 44. 00:02:16
    Redirect Routes
  • Урок 45. 00:12:24
    Routing Our Quiz App
  • Урок 46. 00:11:35
    Quiz Page HTML and CSS
  • Урок 47. 00:05:08
    Separating Code Into Components
  • Урок 48. 00:08:57
    Passing Props to the Question Component
  • Урок 49. 00:07:16
    Listening to Changes With Watch
  • Урок 50. 00:03:35
    Computing Values With State
  • Урок 51. 00:04:03
    More Computing...
  • Урок 52. 00:09:10
    Passing Data From the Child to the Parent
  • Урок 53. 00:09:22
    Emitting an Event From the Child Component
  • Урок 54. 00:11:44
    Completing the Quiz
  • Урок 55. 00:04:12
    Introduction to Vue Animations
  • Урок 56. 00:09:31
    The Transition Component
  • Урок 57. 00:04:16
    Animating When a Component Leaves
  • Урок 58. 00:04:55
    Conditional Rendering Animations
  • Урок 59. 00:11:51
    Building a Small App
  • Урок 60. 00:05:17
    TransitionGroup to Animate Multiple Elements
  • Урок 61. 00:03:48
    Animating the Other Cards Into Place
  • Урок 62. 00:08:17
    Routing Animations
  • Урок 63. 00:06:17
    Animating Upon Rendering
  • Урок 64. 00:06:09
    Lifecycle Hook of the Transition
  • Урок 65. 00:08:02
    Animation Styling With JavaScript
  • Урок 66. 00:01:46
    App Overview
  • Урок 67. 00:05:25
    The Process of Fetching Data From an API
  • Урок 68. 00:02:25
    Creating the App
  • Урок 69. 00:04:44
    Where to Fetch the Data
  • Урок 70. 00:09:34
    Making the HTTP Requests
  • Урок 71. 00:07:35
    The Suspense Component
  • Урок 72. 00:05:59
    Request Offsets and Limits
  • Урок 73. 00:07:00
    Implementing Paginations
  • Урок 74. 00:18:03
    Building the UI
  • Урок 75. 00:02:59
    A Little Fix
  • Урок 76. 00:10:47
    Component Lifecycle Hooks
  • Урок 77. 00:07:31
    Fetching Data With onMounted
  • Урок 78. 00:13:34
    Slots For Dynamic HTML
  • Урок 79. 00:09:09
    More on Slots
  • Урок 80. 00:06:26
    Adding a Better Loading State
  • Урок 81. 00:10:04
    Creating the Header Component
  • Урок 82. 00:05:48
    Maintaining State With KeepAlive
  • Урок 83. 00:03:18
    Introduction to State Management
  • Урок 84. 00:05:50
    Building a Small Project
  • Урок 85. 00:03:44
    Declaring State With Reactive
  • Урок 86. 00:06:52
    Ref vs Reactive
  • Урок 87. 00:06:18
    A Lot of Nested Components
  • Урок 88. 00:07:37
    Prop Drilling
  • Урок 89. 00:09:02
    Provide/Inject
  • Урок 90. 00:07:06
    Store Reusable Logic With Composables
  • Урок 91. 00:13:39
    Global State With Pinia
  • Урок 92. 00:09:51
    An Introduction to TypeScript
  • Урок 93. 00:18:47
    An Optional TypeScript Lesson
  • Урок 94. 00:05:17
    Building the HTML App
  • Урок 95. 00:05:10
    Types With State
  • Урок 96. 00:07:56
    Types With Functions
  • Урок 97. 00:08:38
    Types With Props
  • Урок 98. 00:08:10
    Types With Computed
  • Урок 99. 00:03:48
    Reusing Our Types Throughout Multiple Components
  • Урок 100. 00:03:05
    Project Overview
  • Урок 101. 00:01:37
    Your Two Options
  • Урок 102. 00:07:07
    Setting Up the Vue App
  • Урок 103. 00:14:58
    Building the NavBar
  • Урок 104. 00:13:23
    Building the Modal
  • Урок 105. 00:12:37
    Building the Timeline
  • Урок 106. 00:07:13
    Adding a Profile View
  • Урок 107. 00:08:59
    Adding the User Bar
  • Урок 108. 00:05:17
    Adding an Image Gallary
  • Урок 109. 00:01:58
    An Introduction to Authentication
  • Урок 110. 00:03:38
    Supabase - A Backend as a Service
  • Урок 111. 00:04:12
    Connecting Our Vue App to Supabase
  • Урок 112. 00:04:39
    Creating a Pinia User Store
  • Урок 113. 00:14:45
    Adding Input Validation
  • Урок 114. 00:03:21
    Client vs Backend Validation
  • Урок 115. 00:11:42
    Signing Up the User
  • Урок 116. 00:08:10
    Validating if the User is Already Registered
  • Урок 117. 00:03:15
    Improving Error Handing
  • Урок 118. 00:05:31
    Adding a Loading State For the Modal
  • Урок 119. 00:07:34
    Handling the Success Case
  • Урок 120. 00:13:01
    Adding the Login Logic
  • Урок 121. 00:11:52
    Persisting the Login State
  • Урок 122. 00:05:38
    A Loading State for Retrieving the User
  • Урок 123. 00:07:13
    Handling Logout
  • Урок 124. 00:03:17
    Navigating to the User's Profile
  • Урок 125. 00:09:54
    Conditionally Rendering the Upload Photo Modal
  • Урок 126. 00:06:43
    Adding the Input Elements
  • Урок 127. 00:02:52
    Creating a Bucket For File Storage
  • Урок 128. 00:06:05
    Programmatically Uploading a Photo
  • Урок 129. 00:02:50
    Updating the Image Policy
  • Урок 130. 00:05:59
    Creating the Posts Table
  • Урок 131. 00:06:12
    Adding a Post to Our DB
  • Урок 132. 00:04:37
    Adding a Loading State
  • Урок 133. 00:08:10
    Handling the Success State
  • Урок 134. 00:09:37
    Fetching Posts Upon Render
  • Урок 135. 00:02:35
    Adding a Loading State
  • Урок 136. 00:04:50
    Building a Following Follower Table
  • Урок 137. 00:03:06
    Conditionally Rendering a Follow Button
  • Урок 138. 00:01:33
    Making the Profile Component Reactive
  • Урок 139. 00:05:19
    Implementing the Follow User Functionality
  • Урок 140. 00:11:00
    Determining Follower Info on Render
  • Урок 141. 00:02:32
    Implementing the Unfollow Functionality
  • Урок 142. 00:02:29
    Toggling the Follow/Following Buttons
  • Урок 143. 00:07:53
    Performing Aggregate Queries
  • Урок 144. 00:06:40
    Check Auth Status in Timeline Page
  • Урок 145. 00:03:54
    Separating HTML into Components
  • Урок 146. 00:05:28
    Fetching the Followers
  • Урок 147. 00:05:14
    Fetching the Followers' Posts
  • Урок 148. 00:02:32
    Rendering the Posts
  • Урок 149. 00:01:43
    Sorting By Most Recent
  • Урок 150. 00:04:01
    Let's Do Some Math
  • Урок 151. 00:08:41
    The Intersection Observer API
  • Урок 152. 00:03:42
    Emitting an Event on Intersect
  • Урок 153. 00:06:23
    Implementing the Pagination
  • Урок 154. 00:04:19
    Stopping Unnecessary HTTP Requests
  • Урок 155. 00:05:31
    Saving Data in Environment Variables