The week after next, I'm on vacation, so I'm busy preparing the following two newsletter issues for you. Enjoy this issue with many interesting articles, videos, tips, and more.
👉🏻 This article will guide you through setting up Vue Router, the official routing engine for Vue.js, to create a seamless navigation experience in your Vue.js project.
👉🏻 shallowRef is a great utility in Vue.js that could help improve performance of your website if you are dealing with huge data structures like nested objects or arrays.
Unlock 48 hours of free access to Vue.js Developer Certification Training on June 29 & 30, 2024.
Dive into theory, coding challenges, quizzes, and a mock exam to gauge your readiness for the official certification.
🔥 Vue Tip: Cache Component Instances With the KeepAlive Component
KeepAliveKeepAlive is a built-in Vue component that allows you to conditionally cache component instances when dynamically switching between multiple components.
Let's take a look at a simple example to understand how KeepAliveKeepAlive works. We have two components, ComponentAComponentA and ComponentBComponentB, and we want to cache the instances of these components when switching between them.
1<script setup>2import { shallowRef } from 'vue';3import ComponentA from './components/ComponentA.vue';4import ComponentB from './components/ComponentB.vue';56const current = shallowRef(ComponentA);7</script>89<template>10 <div>11 <label12 ><input type="radio" v-model="current" :value="ComponentA" /> A</label13 >14 <label15 ><input type="radio" v-model="current" :value="ComponentB" /> B</label16 >17 </div>18 <component :is="current"></component>19</template>
If you switch between the components using the radio buttons, you will notice that the component instances are destroyed and recreated every time you switch between them. Thus, the state of each component is lost.
If you want to cache the instances of the components, you can wrap the componentscomponents element with the KeepAliveKeepAlive component.
👉🏻 A Chrome extension to measure and analyze page elements.
👉🏻 Once enabled, it lets you hover over elements to view info similar to DevTools (padding, margin, etc.) with the added ability to measure specific distances on the page.
Sunday, January 5, 2025 Update: Bluesky images work again and thus the Great Art on Bluesky channel is back. If you're on Bluesky please subscribe. # The crazy thing about Bluesky's API is they took already standardized things like links and enclosures, and after 20+ years came up with new definitions. Makes our apps more expensive to maintain, and we waste time and human wear and tear on stupid bullshit make-work. Developers are people, and our work is already horribly overly complex, we're working at the edge of comprehension, and what the fukc let's throw some more unnecessary complication into the mix. Arrogance, narcissism, whatever the source is, it's not a good way to introduce yourself. And, even better, after you go through the maze they break it, with an error message about legacy blob bullshit. They've already done this, and they're just getting started. It's why I say they should just adapt to RSS instead of trying to forc...
评论
发表评论