Vue 3.x 可选的 props 声明

发布于 2024-12-23 23:56:48 字数 1288 浏览 1 评论 0

可选的 props 声明

官方英文 markdowm 文件

When a component has no props declarations, all attributes passed by the parent are exposed in this.$props . Unlike declared props, they will NOT be exposed directly on this . In addition, in this case this.$attrs and this.$props will be pointing to the same object.

<template>
  <div>{{ $props.foo }}</div>
</template>

// If the component has no other options, the entire `<script>` block can be dropped, so the following would be a valid SFC
<script>
export default {}
</script>

函数式组件

Similar to stateful components, when props are declared, the props arguments will only contain the declared props - attributes received but not declared as props will be in the argument ( attrs ):

const FunctionalComp = (props, slots, attrs) => {
// const FunctionalComp = (props, { slots, attrs }) => { 难道不是这样吗
  // `attrs` contains all received attributes except declared `foo`
}
FunctionalComp.props = {
  foo: Number
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

关于作者

执着的年纪

暂无简介

0 文章
0 评论
23 人气
更多

推荐作者

亚希

文章 0 评论 0

cyp

文章 0 评论 0

北漠

文章 0 评论 0

11223456

文章 0 评论 0

坠似风落

文章 0 评论 0

游魂

文章 0 评论 0

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文