Vue 3 道具未通过

Posted

技术标签:

【中文标题】Vue 3 道具未通过【英文标题】:Vue 3 prop not being passed 【发布时间】:2021-08-05 22:50:33 【问题描述】:

我正在尝试将一个简单的道具传递给 Vue 3.0.11 中的另一个组件,但我似乎无法让它工作。这是我的 App 组件:

<template>
  <Loading :message="Importing"></Loading>
</template>

<script>
import Loading from "./components/Loading.vue";
export default 
  name: "App",
  components:  Loading ,
;
</script>

<style>
</style>

还有我的Loading 组件:

<template>
  <div> loadingText ...</div>
</template>

<script>
export default 
  name: "Loading",
  props: ["message"],
  data() 
    return 
      loadingText: this.message || "Loading",
    ;
  ,
;
</script>

<style scoped>
</style>

我正在尝试使用值 Importing 传递道具 message,但在加载组件中它告诉我 message 道具未定义。这是一个 REPREX:https://codesandbox.io/s/vibrant-raman-pweb4

我做错了什么?

【问题讨论】:

【参考方案1】:

您正在尝试使用 v-bind: 速记语法将其传递给道具::

Vue 期望你传入变量Importing。这不存在,所以它解析为未定义。

因为您的消息只是一个内联字符串,您需要远程: 或用单引号或反引号包裹“导入”(如果您想要执行不够复杂的字符串插值以保证计算):

<Loading message="Importing"></Loading>

<Loading :message="'Importing'"></Loading>

这也可以:

<template>
  <Loading :message="message"></Loading>
</template>

<script>
import Loading from "./components/Loading.vue";
export default 
  name: "App",
  components:  Loading ,
  data() 
    return 
      message: 'Importing',
    
  
;
</script>

【讨论】:

感谢您提供答案并澄清我做错的原因! 不用担心,@Chris。很高兴有帮助。祝你好运! 就像一个快速的旁注一样。你可以在 Vue 中使用自闭合标签来保持整洁。这是官方风格指南推荐的。所以 &lt;Loading message="Importing" /&gt; 而不是 &lt;Loading message="Importing"&gt;&lt;/Loading&gt; 以保持清洁

以上是关于Vue 3 道具未通过的主要内容,如果未能解决你的问题,请参考以下文章

Vue子组件未从父组件接收道具

在使用 Vue.js 和 Vue CLI 3 处理一些处理后通过道具渲染项目

无法循环通过 Vue 3 Reactive Array 道具(代理)

为啥 Vue 不读取我通过 PHP 作为道具传递的整个 JSON 对象?

Vue - 通过路由器将道具传递给组件

vue & vuex getter vs 通过道具传递状态