Efficiently Managing Remote Data in Vue with Vue Query
Vue Query, inspired by React Query, provides powerful hooks for fetching, caching, and synchronizing server state in your Vue applications. - https://dev.to/alimetehrani/efficiently-managing-remote-data-in-vue-with-vue-query-192h
#vue
Vue Query, inspired by React Query, provides powerful hooks for fetching, caching, and synchronizing server state in your Vue applications. - https://dev.to/alimetehrani/efficiently-managing-remote-data-in-vue-with-vue-query-192h
#vue
DEV Community
Efficiently Managing Remote Data in Vue with Vue Query
When building modern Vue applications, efficiently managing remote data is crucial for creating...
Dynamic Components in Vue
Learn about the difference between direct imports and importing the components lazily as well as discussing global components. - https://www.youtube.com/watch?v=YLFOynY72sE
#vue
Learn about the difference between direct imports and importing the components lazily as well as discussing global components. - https://www.youtube.com/watch?v=YLFOynY72sE
#vue
YouTube
Dynamic Components in Vue
🃏 The more complex scenarios applications have to cover, the more the need for dynamic components increases. Using different tabs, icons, modals with different content or blocks defined in a CMS - all these cases are typical for dynamic components. But how…
How to Integrate Shadcn with Nuxt.js
In this detailed guide, we’ll walk through how to integrate Shadcn Vue with Nuxt.js. You will also be provided with useful insights and practical tips. - https://masteringnuxt.com/blog/how-to-integrate-shadcn-with-nuxtjs
#vue
In this detailed guide, we’ll walk through how to integrate Shadcn Vue with Nuxt.js. You will also be provided with useful insights and practical tips. - https://masteringnuxt.com/blog/how-to-integrate-shadcn-with-nuxtjs
#vue
Masteringnuxt
How to Integrate Shadcn with Nuxt.js
In this detailed guide, we’ll walk through how to integrate Shadcn Vue with Nuxt.js. We’ll also provide useful insights and practical tips.
How to Create Supabase Database Migration Files in Vue.js
In this guide, explore how to create migration files for a remote Supabase database so that the database can be updated directly from your Vue.js project. - https://vueschool.io/articles/vuejs-tutorials/how-to-create-supabase-database-migration-files-in-vue-js/
#vue
In this guide, explore how to create migration files for a remote Supabase database so that the database can be updated directly from your Vue.js project. - https://vueschool.io/articles/vuejs-tutorials/how-to-create-supabase-database-migration-files-in-vue-js/
#vue
vueschool.io
How to Create Supabase Database Migration Files in Vue.js - Vue School Articles
In this guide, we’ll focus on creating migration files for a remote Supabase database, ensuring that our the database is updated directly from within our Vue.js project.
Top 10 must use Nuxt modules
This article is a curated list of top 10 Modules that the author uses in every Nuxt Project. - https://dev.to/leamsigc/top-10-must-use-nuxt-modules-dmo
#vue
This article is a curated list of top 10 Modules that the author uses in every Nuxt Project. - https://dev.to/leamsigc/top-10-must-use-nuxt-modules-dmo
#vue
DEV Community
Top 10 must use Nuxt modules
After a while working with Nuxt, here are the top 10 Modules that I use in every single one of my...
How To Use Feature Flags in Vue.JS
Feature Flags are conditional statements like an if/else block of code that provides the ability to switch certain functionalities or features on/off in an application. This article explores how to confidently test and integrate new features in your applications without deploying new code using Feature Flags. - https://daveyhert.hashnode.dev/how-to-use-feature-flags-in-vuejs
#vue
Feature Flags are conditional statements like an if/else block of code that provides the ability to switch certain functionalities or features on/off in an application. This article explores how to confidently test and integrate new features in your applications without deploying new code using Feature Flags. - https://daveyhert.hashnode.dev/how-to-use-feature-flags-in-vuejs
#vue
David Herbert's Blog
How To Use Feature Flags in Vue.JS
Confidently test and integrate new features in your applications without deploying new code
Building a blog with Nuxt content
This is an article series dedicated to building a blog with Nuxt and Nuxt Content. For this part the author introduce pagination and some navigation features into the blog. - https://masteringnuxt.com/blog/building-a-blog-with-nuxt-content-part-2
#vue
This is an article series dedicated to building a blog with Nuxt and Nuxt Content. For this part the author introduce pagination and some navigation features into the blog. - https://masteringnuxt.com/blog/building-a-blog-with-nuxt-content-part-2
#vue
Masteringnuxt
Building a blog with Nuxt content (Part 2)
Welcome back again as we build our blog with Nuxt Content. For this part we will introduce pagination and some navigation features into our blog.
Tightly Coupled Components Vue Components with Provide/Inject
In this article, learn how to create tightly coupled components with Vue’s provide/inject functions. This component design strategy is great for creating components that are intuitive to use together and rely on shared state! - https://vueschool.io/articles/vuejs-tutorials/tightly-coupled-components-vue-components-with-provide-inject/
#vue
In this article, learn how to create tightly coupled components with Vue’s provide/inject functions. This component design strategy is great for creating components that are intuitive to use together and rely on shared state! - https://vueschool.io/articles/vuejs-tutorials/tightly-coupled-components-vue-components-with-provide-inject/
#vue
vueschool.io
Tightly Coupled Components Vue Components with Provide/Inject - Vue School Articles
In this article, learn how to create tightly coupled components with Vue’s provide/inject functions. This component design strategy is great for creating components that are intuitive to use together and rely on shared state!
Creating and Publishing a vue-file-validator plugin with Vite and npm : A Comprehensive Guide
As developers, we often face the challenge of validating file uploads in our web applications. This article provides a walk through of developing a file validator plugin and the process of publishing to npm. - https://dev.to/kelvin-igbinoba/creating-and-publishing-a-vue-file-validator-plugin-with-vite-and-npm-a-comprehensive-guide-bi0
#vue
As developers, we often face the challenge of validating file uploads in our web applications. This article provides a walk through of developing a file validator plugin and the process of publishing to npm. - https://dev.to/kelvin-igbinoba/creating-and-publishing-a-vue-file-validator-plugin-with-vite-and-npm-a-comprehensive-guide-bi0
#vue
DEV Community
Creating and Publishing a vue-file-validator plugin with Vite and npm : A Comprehensive Guide
Introduction As developers, we often face the challenge of validating file uploads in our web...
Vue.js and HTML Injection Explained
Do you use v-html in your code? If so, you might be at risk of attack via HTML injection. In this article, explore exactly HOW v-html puts you at risk, use cases and mitigation strategies - https://vueschool.io/articles/vuejs-tutorials/vue-js-and-html-injection-explained/
#vue
Do you use v-html in your code? If so, you might be at risk of attack via HTML injection. In this article, explore exactly HOW v-html puts you at risk, use cases and mitigation strategies - https://vueschool.io/articles/vuejs-tutorials/vue-js-and-html-injection-explained/
#vue
vueschool.io
Vue.js and HTML Injection Explained - Vue School Articles
Learn why v-html can be dangerous. Plus, strategies for avoiding the risk while still providing rich user interfaces
Vue 3 Auto Routing By File Structure
Tired of manually managing routes in Vue? Here's a solid approach to auto routing by file structure in Vue 3 you might find useful! - https://dev.to/jenueldev/vue-3-auto-routing-by-file-structure-2hac
#vue
Tired of manually managing routes in Vue? Here's a solid approach to auto routing by file structure in Vue 3 you might find useful! - https://dev.to/jenueldev/vue-3-auto-routing-by-file-structure-2hac
#vue
DEV Community
Vue 3 Auto Routing By File Structure
One of my problem when working with VueJS is when creating routes especially if the project is...
Caching Data With Nuxt (client-side)
This tutorial demonstrates how to cache data on the client-side within a Nuxt application using the getCacheData method. This allows you to easily cache your data and avoid unnecessary calls to an API for your users. The video includes a step-by-step guide on how to implement caching, including setting an expiration time for your cached data. - https://www.youtube.com/watch?v=taYtXvZJvLk
#vue
This tutorial demonstrates how to cache data on the client-side within a Nuxt application using the getCacheData method. This allows you to easily cache your data and avoid unnecessary calls to an API for your users. The video includes a step-by-step guide on how to implement caching, including setting an expiration time for your cached data. - https://www.youtube.com/watch?v=taYtXvZJvLk
#vue
YouTube
Caching Data With Nuxt (client-side)
🤖 WebDevDaily: https://www.webdevdaily.io/
📕 Nuxt 3 Course: https://www.learnnuxt.dev/
📕 Vue 3 Crash Course: https://johnkomarnicki.gumroad.com/l/tqrmw
🚀 Join the channel :https://www.youtube.com/channel/UCr0D7PVNOHqB3Td7lVl_LKw/join
🤖 Website: https://…
📕 Nuxt 3 Course: https://www.learnnuxt.dev/
📕 Vue 3 Crash Course: https://johnkomarnicki.gumroad.com/l/tqrmw
🚀 Join the channel :https://www.youtube.com/channel/UCr0D7PVNOHqB3Td7lVl_LKw/join
🤖 Website: https://…
The simplicity of using Vue’s reactivity system outside of Vue
Vue’s reactivity can be imported and used in JS outside of a Vue app, like in Node directly. This article provides a guide on how you can achieve and the benefits. - https://marchantweb.com/article/the-simplicity-of-using-vues-reactivity-system-outside-of-vue
#vue
Vue’s reactivity can be imported and used in JS outside of a Vue app, like in Node directly. This article provides a guide on how you can achieve and the benefits. - https://marchantweb.com/article/the-simplicity-of-using-vues-reactivity-system-outside-of-vue
#vue
Using two script blocks in Vue Single File Components
In this article, the author provides a guide on how you can use two script blocks in one Vue component. - https://dev.to/jacobandrewsky/using-two-script-blocks-in-vue-single-file-components-29l4
#vue
In this article, the author provides a guide on how you can use two script blocks in one Vue component. - https://dev.to/jacobandrewsky/using-two-script-blocks-in-vue-single-file-components-29l4
#vue
DEV Community
Using two script blocks in Vue Single File Components
Hey there! I recently encountered an issue while developing Vue components - I wanted to create a...
Tightly Coupled Components Vue Components with Provide/Inject
Using provide and inject in Vue.js allows you to create tightly coupled components that can share state and behavior.
This pattern is particularly useful for creating reusable UI components. - https://vueschool.io/articles/vuejs-tutorials/tightly-coupled-components-vue-components-with-provide-inject
#vue
Using provide and inject in Vue.js allows you to create tightly coupled components that can share state and behavior.
This pattern is particularly useful for creating reusable UI components. - https://vueschool.io/articles/vuejs-tutorials/tightly-coupled-components-vue-components-with-provide-inject
#vue
vueschool.io
Tightly Coupled Components Vue Components with Provide/Inject - Vue School Articles
In this article, learn how to create tightly coupled components with Vue’s provide/inject functions. This component design strategy is great for creating components that are intuitive to use together and rely on shared state!
How to Read and Write Cookies in Nuxt 3
Learn how to read, write and manage cookies in Nuxt 3 using the useCookie built-in composable. - https://masteringnuxt.com/blog/how-to-read-and-write-cookies-in-nuxt-3
#vue
Learn how to read, write and manage cookies in Nuxt 3 using the useCookie built-in composable. - https://masteringnuxt.com/blog/how-to-read-and-write-cookies-in-nuxt-3
#vue
Masteringnuxt
How to Read and Write Cookies in Nuxt 3
Learn how to read, write and manage cookies in Nuxt 3 using the useCookie built-in composable.
How to Build Your Own Vue-like Reactivity System from Scratch
In this tutorial, the author explains Vue's reactivity by building our own versions of ref() and watchEffect(). Gain a deeper understanding of reactive programming in frontend development. - https://dev.to/alexanderop/how-to-build-your-own-vue-like-reactivity-system-from-scratch-1d2d
#vue
In this tutorial, the author explains Vue's reactivity by building our own versions of ref() and watchEffect(). Gain a deeper understanding of reactive programming in frontend development. - https://dev.to/alexanderop/how-to-build-your-own-vue-like-reactivity-system-from-scratch-1d2d
#vue
DEV Community
How to Build Your Own Vue-like Reactivity System from Scratch
Introduction Understanding the core of modern Frontend frameworks is crucial for every web...
Redirects in Nuxt 3
This video demonstrates how to build custom redirects in Nuxt 3, covering both simple and complex redirect scenarios. It explores the use of route rules and Nitro middleware for creating redirects. - https://www.youtube.com/watch?v=ALQcCDEusjI
#vue
This video demonstrates how to build custom redirects in Nuxt 3, covering both simple and complex redirect scenarios. It explores the use of route rules and Nitro middleware for creating redirects. - https://www.youtube.com/watch?v=ALQcCDEusjI
#vue
YouTube
Redirects in Nuxt 3
Redirects are essential for web applications, at least at some point when a migration has to happen or SEO should be improved by having more descriptive URLs.
#nuxt #vue
---
Links and Resources:
🔗 10% Off for vuejs.de Conf with Code LICHTER https://c…
#nuxt #vue
---
Links and Resources:
🔗 10% Off for vuejs.de Conf with Code LICHTER https://c…
Best Practices for Fetching Data in Vue.js
Fetching data in Vue.js applications is a common task. By following best practices, we can make your code more efficient, maintainable, and robust. Here are some of the best practices and common ways for fetching data in Vue.js used by almost all Vue developers. - https://blog.jobins.jp/best-practices-for-fetching-data-in-vuejs
#vue
Fetching data in Vue.js applications is a common task. By following best practices, we can make your code more efficient, maintainable, and robust. Here are some of the best practices and common ways for fetching data in Vue.js used by almost all Vue developers. - https://blog.jobins.jp/best-practices-for-fetching-data-in-vuejs
#vue
JoBins Engineering
Best Practices for Fetching Data
The best practices and common ways for fetching data in Vue.js
How can I integrate Vue.js into an existing Shopify theme?
Here’s a step-by-step guide with code examples for integrating Vue.js into an existing Shopify theme. - https://dev.to/sdlc_corp/how-can-i-integrate-vuejs-into-an-existing-shopify-theme-3jp0
#vue
Here’s a step-by-step guide with code examples for integrating Vue.js into an existing Shopify theme. - https://dev.to/sdlc_corp/how-can-i-integrate-vuejs-into-an-existing-shopify-theme-3jp0
#vue
DEV Community
How can I integrate Vue.js into an existing Shopify theme?
Integrating Vue.js into an existing Shopify theme involves several steps. Here's a step-by-step guide...