摘要: let _globalThis: any export const getGlobalThis = (): any => { return ( _globalThis || (_globalThis = typeof globalThis !== 'undefined' ? globalThis : 阅读全文
posted @ 2024-12-02 15:05 Zhentiw 阅读(4) 评论(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 阅读(9) 评论(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 阅读(7) 评论(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 阅读(7) 评论(0) 推荐(0) 编辑
摘要: The Shortcomings of Most Prop Definitions In the last lesson, we learned how to create props that were well documented and helped to prevent common bu 阅读全文
posted @ 2024-12-02 01:27 Zhentiw 阅读(11) 评论(0) 推荐(0) 编辑
摘要: Mutating State Here’s where Pinia gets a bit… controversial. Pinia allows us to mutate state in a variety of ways, letting us decide where and when we 阅读全文
posted @ 2024-12-02 01:14 Zhentiw 阅读(10) 评论(0) 推荐(0) 编辑