摘要:
let _globalThis: any export const getGlobalThis = (): any => { return ( _globalThis || (_globalThis = typeof globalThis !== 'undefined' ? globalThis : 阅读全文
摘要:
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 阅读全文
摘要:
Introduction Slots allow developers to have the flexibility to provide content to a child component, but what happens when the child component has con 阅读全文
摘要:
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 阅读全文
摘要:
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 阅读全文
摘要:
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 阅读全文