2024年7月27日
摘要: 1.默认插槽 // 子组件 <template> <div> <slot></slot> </div> </template> // 父组件 <template> <ChildComponent> <p>这是插槽中的内容</p> </ChildComponent> </template> 2.具名插 阅读全文
posted @ 2024-07-27 18:24 W-阿飞 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 1、Vue2 和 Vue3 的区别? vue3 对于 typescript 的支持更加的好 vue3 的 Composition API, vue2 的 Option API vue3 打包使用 tree-shaking 策略,体积更小 vue3 在模板编译的阶段会有静态节点提升,运行时性能更好 v 阅读全文
posted @ 2024-07-27 17:30 W-阿飞 阅读(30) 评论(0) 推荐(0) 编辑