随笔分类 -  Vue

上一页 1 2 3 4 5 6 ··· 8 下一页
摘要:Reactive props destructure is the highlight feature of Vue 3.5. It allows you to destructure props while maintaining their reactivity: const { foo } = 阅读全文
posted @ 2025-03-11 15:44 Zhentiw 阅读(46) 评论(0) 推荐(0)
摘要:<template> <div> <input type="text" v-bind="$attrs" /> </div> </template> <script setup lang="ts" > // by default when you pass props to the component 阅读全文
posted @ 2025-03-04 15:30 Zhentiw 阅读(14) 评论(0) 推荐(0)
摘要:As we explore the Nuxt ecosystem, another valuable resource we’ll be taking a look at is Nuxt Middleware. Nuxt provides us with two types of middlewar 阅读全文
posted @ 2025-02-04 21:23 Zhentiw 阅读(49) 评论(0) 推荐(0)
摘要:Performance is vital for the long-term success of a modern web application as it impacts things like SEO, user experience, engagement, and conversion 阅读全文
posted @ 2025-02-04 21:14 Zhentiw 阅读(48) 评论(0) 推荐(0)
摘要:This course is based on our Coding Better Composables blog series authored by Michael Thiessen. If you can get async code to work correctly, it can si 阅读全文
posted @ 2025-02-04 15:51 Zhentiw 阅读(21) 评论(0) 推荐(0)
摘要:This course is based on our Coding Better Composables blog series authored by Michael Thiessen. The composable you wrote last month returns an object, 阅读全文
posted @ 2025-02-04 15:35 Zhentiw 阅读(16) 评论(0) 推荐(0)
摘要:This course is based on our Coding Better Composables blog series authored by Michael Thiessen. What if your composable could change what is returned 阅读全文
posted @ 2025-02-04 15:05 Zhentiw 阅读(10) 评论(0) 推荐(0)
摘要:This course is based on our Coding Better Composables blog series authored by Michael Thiessen. When using composables in Vue.js, sometimes you alread 阅读全文
posted @ 2025-02-04 15:00 Zhentiw 阅读(15) 评论(0) 推荐(0)
摘要:VueUse is an open source collection of composables for Vue 3, and is very well written. It’s a great resource to learn how to write great composables! 阅读全文
posted @ 2025-02-04 14:48 Zhentiw 阅读(31) 评论(0) 推荐(0)
摘要:Composables are, by far, the best way to organize business logic in your Vue 3 app. They let you extract small pieces of logic into functions that you 阅读全文
posted @ 2025-02-04 14:47 Zhentiw 阅读(33) 评论(0) 推荐(0)
摘要:A Nuxt app can be rendered in various modes. The default standard mode is simply called SSR. Specifically, it means Server-Side Rendering on request. 阅读全文
posted @ 2025-02-04 14:38 Zhentiw 阅读(49) 评论(0) 推荐(0)
摘要:在通过 vuecli 创建 vue 项目的时候,我们可以很轻松的将 jest 测试框架集成进去。 之前我们在介绍测试 React 组件的时候,介绍了 testing library 这个扩展库,这个 testing library 是一个通用库,因此这个扩展库可以用于 vue、angular... 阅读全文
posted @ 2025-01-29 18:24 Zhentiw 阅读(95) 评论(0) 推荐(0)
摘要:Validating at form level Now that we know how to validate a single input field in our forms, let’s take it a step further and learn how to set up our 阅读全文
posted @ 2024-12-21 19:47 Zhentiw 阅读(49) 评论(0) 推荐(0)
摘要:Appropriate types In HTML we have a wide variety of input elements to craft our forms, but one element in particular rules them all. The catch-all inp 阅读全文
posted @ 2024-12-21 19:39 Zhentiw 阅读(43) 评论(0) 推荐(0)
摘要:We have a RadioGroupcomponent, when the prop verticalis true, we want all the Radiowrap with div, otherwise wrap with span. <template> <component v-fo 阅读全文
posted @ 2024-12-04 15:14 Zhentiw 阅读(19) 评论(0) 推荐(0)
摘要:<template> <label v-if="label">{{ label }}</label> <select class="field" :value="modelValue" v-bind="{ ...$attrs, onChange: ($event) => { $emit('updat 阅读全文
posted @ 2024-12-03 15:30 Zhentiw 阅读(26) 评论(0) 推荐(0)
摘要:<style> .red {color: red;} .green {color: green;} </style> <div id="app"></div> <script> function h(tag, props, children) { return { tag, props, child 阅读全文
posted @ 2024-12-03 15:08 Zhentiw 阅读(14) 评论(0) 推荐(0)
摘要:Introduction One of the first things that Vue developers often learn is the magic of using v-bind and v-on to supercharge their HTML with dynamic bind 阅读全文
posted @ 2024-12-02 01:57 Zhentiw 阅读(29) 评论(0) 推荐(0)
摘要:Introduction Slots allow developers to have the flexibility to provide content to a child component, but what happens when the child component has con 阅读全文
posted @ 2024-12-02 01:52 Zhentiw 阅读(67) 评论(0) 推荐(0)
摘要:Defining default content for a slot In the event that your component has content that works as a good default, this can be accomplished by defining th 阅读全文
posted @ 2024-12-02 01:40 Zhentiw 阅读(35) 评论(0) 推荐(0)

上一页 1 2 3 4 5 6 ··· 8 下一页