joken-前端工程师

  :: 首页 :: 博问 :: 闪存 :: 新随笔 :: :: :: 管理 ::

2024年9月13日

摘要: 去掉子组件多余的空参数即可,比如props:{} 阅读全文
posted @ 2024-09-13 21:57 joken1310 阅读(47) 评论(0) 推荐(0) 编辑

摘要: 代码 使用方组件 import { defineComponent, PropType, h, computed, ref, watch } from 'vue'; import useMyHooks from './hooks/useMyHooks'; export default defineC 阅读全文
posted @ 2024-09-13 21:49 joken1310 阅读(16) 评论(0) 推荐(0) 编辑

摘要: tsx 实现slot插槽 父组件 <template> <div class="component-name"> <child> <template #default="scope"> <div>default</div> <div>{{ scope.a }}</div> </template> < 阅读全文
posted @ 2024-09-13 21:41 joken1310 阅读(64) 评论(0) 推荐(0) 编辑

摘要: 参考代码 import { defineComponent, PropType, h, computed, ref, watch } from 'vue'; import type { Reactive, Ref } from 'vue'; import styles from '../scss/c 阅读全文
posted @ 2024-09-13 21:24 joken1310 阅读(43) 评论(0) 推荐(0) 编辑