Vue.js Modular State Management: Best Practices for Scalable and Maintainable Store Configuration
Modular state management is essential for keeping scalable state management in Vue.js.
It also makes it easier to maintain the apps as they become more complex. - https://www.monterail.com/blog/vue-js-modular-state-management-and-store-configuration
#vue
Modular state management is essential for keeping scalable state management in Vue.js.
It also makes it easier to maintain the apps as they become more complex. - https://www.monterail.com/blog/vue-js-modular-state-management-and-store-configuration
#vue
Monterail
Vue.js Modular State Management: Best Practices for Scalable and Maintainable Store Configuration | Monterail blog
Master Vue.js modular state management with best practices for scalable stores, reusable modules, and maintainable architecture using Vuex or Pinia.
defineXYZ in Vue - What are Compiler Macros?!
Even when not using auto imports, there are some function calls in your Vue SFCs that you don't "need" to import. - https://www.youtube.com/watch?v=WbMFNW04anA
#vue
Even when not using auto imports, there are some function calls in your Vue SFCs that you don't "need" to import. - https://www.youtube.com/watch?v=WbMFNW04anA
#vue
YouTube
defineXYZ in Vue - What are Compiler Macros?!
💚 Join Vue.js Amsterdam 2025, 10% off the 3 Day ticket with LICHTER https://lichter.link/vue-ams-25 *
Even when not using auto imports, there are some function calls in your Vue SFCs that you don't "need" to import. Why is that? And what makes them special?…
Even when not using auto imports, there are some function calls in your Vue SFCs that you don't "need" to import. Why is that? And what makes them special?…
Optimizing Data Loading in Nuxt with Parallel Requests
Learn how to optimize Nuxt data loading performance by implementing parallel requests with useAsyncData, reducing page load times compared to sequential data fetching operations. Includes code examples and performance comparisons. - https://vueschool.io/articles/vuejs-tutorials/optimizing-data-loading-in-nuxt-with-parallel-requests/
#vue
Learn how to optimize Nuxt data loading performance by implementing parallel requests with useAsyncData, reducing page load times compared to sequential data fetching operations. Includes code examples and performance comparisons. - https://vueschool.io/articles/vuejs-tutorials/optimizing-data-loading-in-nuxt-with-parallel-requests/
#vue
vueschool.io
Optimizing Data Loading in Nuxt with Parallel Requests - Vue School Articles
Learn how to optimize Nuxt data loading performance by implementing parallel requests with useAsyncData, reducing page load times compared to sequential data fetching operations. Includes code examples and performance comparisons.
Async and Sync? How useAsyncData does it all
Curious about how Nuxt's useAsyncData and useFetch can operate both synchronously and asynchronously? Discover the intriguing mechanism behind this dual functionality in our latest blog post. Learn how to create functions that adapt to await usage, enhancing your understanding of Nuxt and empowering you to apply these patterns in your own projects. Check out a complete working demo and step-by-step code explanations to master this concept! - https://masteringnuxt.com/blog/async-and-sync-how-useasyncdata-does-it-all
#vue
Curious about how Nuxt's useAsyncData and useFetch can operate both synchronously and asynchronously? Discover the intriguing mechanism behind this dual functionality in our latest blog post. Learn how to create functions that adapt to await usage, enhancing your understanding of Nuxt and empowering you to apply these patterns in your own projects. Check out a complete working demo and step-by-step code explanations to master this concept! - https://masteringnuxt.com/blog/async-and-sync-how-useasyncdata-does-it-all
#vue
Masteringnuxt
Async and Sync? How useAsyncData does it all
Curious about how Nuxt's useAsyncData and useFetch can operate both synchronously and asynchronously? Discover the intriguing mechanism behind this dual functionality in our latest blog post. Learn how to create functions that adapt to await usage, enhancing…
The Ultimate Guide to Vue Performance
Good performance is a vital part of any web application. In this new course from the Vue School team, learn how to keep your Vue applications lightning fast by looking at common performance centered solutions such as virtual lists, the v-memo directive, the shallowRef function, and more! - https://vueschool.io/courses/the-ultimate-guide-to-vue-performance
#vue
Good performance is a vital part of any web application. In this new course from the Vue School team, learn how to keep your Vue applications lightning fast by looking at common performance centered solutions such as virtual lists, the v-memo directive, the shallowRef function, and more! - https://vueschool.io/courses/the-ultimate-guide-to-vue-performance
#vue
Vue School
The Ultimate Guide to Vue Performance, a Vue.js video course
Good performance is a vital part of any web application. It's a significant determining factor in the conversion of marketing pages and can make or break the UX of web applications. Plus when we...
How I Started Writing Unit Tests for Vue Components
At some point, every frontend developer realizes that it would be great to somehow verify that their code is working as expected. In this article, take a look at how you can start testing Vue components. - https://dev.to/byteminds/how-i-started-writing-unit-tests-for-vue-components-1771?bb=206787
#vue
At some point, every frontend developer realizes that it would be great to somehow verify that their code is working as expected. In this article, take a look at how you can start testing Vue components. - https://dev.to/byteminds/how-i-started-writing-unit-tests-for-vue-components-1771?bb=206787
#vue
DEV Community
How I Started Writing Unit Tests for Vue Components
At some point, every frontend developer realizes that it would be great to somehow verify that their...
Nuxt Scripts: The Answer to Third-Party Scripts Chaos
Master third-party script management with Nuxt Scripts! Boost performance, enhance privacy, and simplify integrations. Find out more in this article. - https://masteringnuxt.com/blog/nuxt-scripts-the-answer-to-third-party-scripts-chaos
#vue
Master third-party script management with Nuxt Scripts! Boost performance, enhance privacy, and simplify integrations. Find out more in this article. - https://masteringnuxt.com/blog/nuxt-scripts-the-answer-to-third-party-scripts-chaos
#vue
Masteringnuxt
Nuxt Scripts: The Answer to Third-Party Scripts Chaos
Master third-party script management with Nuxt Scripts! Boost performance, enhance privacy, and simplify integrations.
How to Prefetch Lazily Loaded Vue Components
APIs let us use powerful features without writing everything from scratch. In this article, the author shares 8 practical APIs that can help you save time, cut down on repetitive tasks, and make your app smarter & more efficient. - https://www.youtube.com/watch?v=PHyciOFiI-M
#vue
APIs let us use powerful features without writing everything from scratch. In this article, the author shares 8 practical APIs that can help you save time, cut down on repetitive tasks, and make your app smarter & more efficient. - https://www.youtube.com/watch?v=PHyciOFiI-M
#vue
YouTube
How to Prefetch Lazily Loaded Vue Components (A Lesson From our Ultimate Guide to Performance)
In this lesson from our course "The Ultimate Guide to Vue Performance", learn advanced performance optimization techniques to enhance user experience by implementing smart component prefetching.
Discover how to leverage event-driven preloading, including…
Discover how to leverage event-driven preloading, including…
13 Vue Composables Tips That Make Your Code Better
Vue composables are incredibly powerful, but they can quickly become messy and hard to maintain if you're not careful.
Michael Thiessen identified 13 tips that will help you write better, more maintainable composables. - https://michaelnthiessen.com/13-vue-composables-tips
#vue
Vue composables are incredibly powerful, but they can quickly become messy and hard to maintain if you're not careful.
Michael Thiessen identified 13 tips that will help you write better, more maintainable composables. - https://michaelnthiessen.com/13-vue-composables-tips
#vue
Michaelnthiessen
13 Vue Composables Tips That Make Your Code Better
Here are 13 tips for writing better Vue composables, from avoiding prop drilling to migrating from Options API to Composition API.
Understanding the Vue 3 Composition API
In this guide, Jakub breaks down the key concepts of the Composition API and show you how to use it effectively in your Vue 3 applications. - https://dev.to/jacobandrewsky/understanding-the-vue-3-composition-api-fa2
#vue
In this guide, Jakub breaks down the key concepts of the Composition API and show you how to use it effectively in your Vue 3 applications. - https://dev.to/jacobandrewsky/understanding-the-vue-3-composition-api-fa2
#vue
DEV Community
Understanding the Vue 3 Composition API
The Vue 3 Composition API introduces a powerful new way to structure and organize code, giving...
Composable Design Patterns
Michael Thiessen has a new course where he shares 16 design patterns.
Learn the right techniques, principles, and patterns for crafting brilliant composables in Vue. - https://michaelnthiessen.com/composable-design-patterns
#vue
Michael Thiessen has a new course where he shares 16 design patterns.
Learn the right techniques, principles, and patterns for crafting brilliant composables in Vue. - https://michaelnthiessen.com/composable-design-patterns
#vue
Michaelnthiessen
Composable Design Patterns
Learn composable design patterns in Vue, and write more flexible and reusable code.
Top 5 Challenges Faced by Vue Developers: The State of Vue.js Survey 2025
Explore five key challenges in Vue.js based on the State of Vue.js Developer Survey 2025.
This article addresses common pain points with practical solutions to help you overcome them in your projects. - https://www.monterail.com/blog/vue-development-challenges-state-of-vue
#vue
Explore five key challenges in Vue.js based on the State of Vue.js Developer Survey 2025.
This article addresses common pain points with practical solutions to help you overcome them in your projects. - https://www.monterail.com/blog/vue-development-challenges-state-of-vue
#vue
Monterail
Top 5 Challenges Faced by Vue Developers: The State of Vue.js Survey 2025
Explore five key challenges in Vue.js based on the State of Vue.js Developer Survey 2025. This article addresses common pain points with practical solutions to help you overcome them in your projects.
Solving Prop Drilling in Vue: Modern State Management Strategies
Eliminate prop drilling in Vue apps using Composition API, Provide/Inject, and Pinia.
Learn when to use each approach with practical examples. - https://alexop.dev/posts/solving-prop-drilling-in-vue/
#vue
Eliminate prop drilling in Vue apps using Composition API, Provide/Inject, and Pinia.
Learn when to use each approach with practical examples. - https://alexop.dev/posts/solving-prop-drilling-in-vue/
#vue
alexop.dev
Solving Prop Drilling in Vue: Modern State Management Strategies | alexop.dev
Eliminate prop drilling in Vue apps using Composition API, Provide/Inject, and Pinia. Learn when to use each approach with practical examples.
Exciting Nuxt Modules to improve your Workflow in 2025
From automated image optimization to edge deployment, learn how these game-changing tools can streamline your workflow. - https://masteringnuxt.com/blog/exciting-nuxt-modules-to-improve-your-workflow-in-2025
#vue
From automated image optimization to edge deployment, learn how these game-changing tools can streamline your workflow. - https://masteringnuxt.com/blog/exciting-nuxt-modules-to-improve-your-workflow-in-2025
#vue
Masteringnuxt
Exciting Nuxt Modules to improve your Workflow in 2025
Level up your Nuxt development in 2025 with these impactful modules. From automated image optimization to edge deployment, learn how these game-changing tools can streamline your workflow
My Favorite Way To Build Forms With Validation In Nuxt
In this video, learn how to create a basic form with validation using Nuxt UI and Zod. - https://www.youtube.com/watch?v=DvcHPR0CVpc
#vue
In this video, learn how to create a basic form with validation using Nuxt UI and Zod. - https://www.youtube.com/watch?v=DvcHPR0CVpc
#vue
YouTube
My Favorite Way To Build Forms With Validation In Nuxt
📕 Nuxt Course: https://www.learnnuxt.dev/
🛍 Save 15% at checkout with code NUXT_UI
Video Resources
https://ui.nuxt.com/
https://zod.dev/
In this video, learn how to create a basic form with validation using Nuxt UI and Zod.
Other Resources
📕 Vue 3 Course:…
🛍 Save 15% at checkout with code NUXT_UI
Video Resources
https://ui.nuxt.com/
https://zod.dev/
In this video, learn how to create a basic form with validation using Nuxt UI and Zod.
Other Resources
📕 Vue 3 Course:…
Good practices for Vue Computed Properties
This article covers good practices for working with computed properties in Vue, ensuring you get the most out of them. - https://dev.to/jacobandrewsky/good-practices-for-vue-computed-properties-5gd7
#vue
This article covers good practices for working with computed properties in Vue, ensuring you get the most out of them. - https://dev.to/jacobandrewsky/good-practices-for-vue-computed-properties-5gd7
#vue
DEV Community
Good practices for Vue Computed Properties
Computed properties are a powerful feature in Vue that allow you to derive and transform data...
Best VS Code Extensions for Vue.js and Nuxt Developers*
In this comprehensive guide, you’ll discover the best VS Code extensions for Vue.js and Nuxt developers. - https://vueschool.io/articles/vuejs-tutorials/best-vs-code-extensions-for-vue-js-and-nuxt-developers
#vue
In this comprehensive guide, you’ll discover the best VS Code extensions for Vue.js and Nuxt developers. - https://vueschool.io/articles/vuejs-tutorials/best-vs-code-extensions-for-vue-js-and-nuxt-developers
#vue
vueschool.io
Best VS Code Extensions for Vue.js and Nuxt Developers - Vue School Articles
Discover the best VS Code extensions for Vue.js and Nuxt developers to boost productivity and streamline debugging.
Conditional Properties in Vue.js
Passing either prop A or prop B but not both is a common use case - but not that easy to achieve in Vue.
In this video, you learn how. - https://www.youtube.com/watch?v=vyD5pYOa5mY
#vue
Passing either prop A or prop B but not both is a common use case - but not that easy to achieve in Vue.
In this video, you learn how. - https://www.youtube.com/watch?v=vyD5pYOa5mY
#vue
YouTube
Conditional Properties in Vue.js
Passing either prop A or prop B but not both is a common use case - but not that easy to achieve in Vue! In this video, you learn how 🙌
#vuejs3 #vue #typescript
---
Links and Resources
🔗 Conditional Properties Issue https://github.com/vuejs/core/issues/8952…
#vuejs3 #vue #typescript
---
Links and Resources
🔗 Conditional Properties Issue https://github.com/vuejs/core/issues/8952…
Async and Sync? How useAsyncData does it all
Curious about how Nuxt's useAsyncData and useFetch can operate both synchronously and asynchronously?
Discover the intriguing mechanism behind this dual functionality in our latest blog post. - https://masteringnuxt.com/blog/async-and-sync-how-useasyncdata-does-it-all
#vue
Curious about how Nuxt's useAsyncData and useFetch can operate both synchronously and asynchronously?
Discover the intriguing mechanism behind this dual functionality in our latest blog post. - https://masteringnuxt.com/blog/async-and-sync-how-useasyncdata-does-it-all
#vue
Masteringnuxt
Async and Sync? How useAsyncData does it all
Curious about how Nuxt's useAsyncData and useFetch can operate both synchronously and asynchronously? Discover the intriguing mechanism behind this dual functionality in our latest blog post. Learn how to create functions that adapt to await usage, enhancing…
Sentry's Pinia Integration for Vue and Nuxt Error Tracking
Sentry’s Pinia integration automatically captures the Pinia state wherever errors occur. - https://blog.sentry.io/sentrys-pinia-integration-for-vue-and-nuxt-error-tracking/
#vue
Sentry’s Pinia integration automatically captures the Pinia state wherever errors occur. - https://blog.sentry.io/sentrys-pinia-integration-for-vue-and-nuxt-error-tracking/
#vue
Product Blog • Sentry
Sentry's Pinia Integration for Vue and Nuxt Error Tracking
Learn how to integrate Sentry with Pinia for enhanced error tracking in Vue and Nuxt applications. Get complete state visibility and debugging insights when errors occur.