joken-前端工程师

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

2024年10月24日

摘要: 代码 子组件 import { defineComponent, PropType } from 'vue'; const MyComponent = defineComponent({ name: 'MyComponent', props: { title: { type: String as P 阅读全文
posted @ 2024-10-24 20:46 joken1310 阅读(11) 评论(0) 推荐(0) 编辑

摘要: 出错代码部分 <script lang="tsx"> import { defineComponent } from 'vue'; import MyComponent from './components/childAbc'; const App = defineComponent({ name: 阅读全文
posted @ 2024-10-24 20:38 joken1310 阅读(47) 评论(0) 推荐(0) 编辑

摘要: 在 Vue 3 中,useAttrs 是一个组合式 API 函数,允许你访问组件的所有属性(props)和传递给组件的非 prop 特性。这在自定义组件时非常有用,尤其是当你想要将这些属性传递给子组件或原生 HTML 元素时。 使用 useAttrs 的基本步骤 引入 useAttrs:从 Vue 阅读全文
posted @ 2024-10-24 20:00 joken1310 阅读(66) 评论(0) 推荐(0) 编辑