Vue 教程(二十)父组件传参子组件

Posted _否极泰来_

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue 教程(二十)父组件传参子组件相关的知识,希望对你有一定的参考价值。

Vue 教程(二十)父组件传参子组件

子组件传递数据

  1. 通过 props 向子组件传递数据

2.props 类型验证:

代码实现

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>组件父组件传参子组件</title>
    <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
  </head>
  <body>
    <div id="app">
      <book-component :child-book-list="bookList"></book-component>
    </div>

    <template id="bookTemplate">
      <div>
        <h3>最热门的书籍列表</h3>
        <ul>
          <li v-for="(item,index) in childBookList">{{item}}</li>
        </ul>
      </div>
    </template>
    <script>
      const bookComponent = {
        template: "#bookTemplate",
        props: {
          childBookList: Array,
        },
      };

      const app = new Vue({
        el: "#app",
        data() {
          return {
            bookList: ["计算机", "网络", "人工智能"],
          };
        },
        components: {
          bookComponent,
        },
      });
    </script>
  </body>
</html>

    – 以上为《Vue 教程(二十)父组件传参子组件》,如有不当之处请指出,我后续逐步完善更正,大家共同提高。谢谢大家对我的关注。

——厚积薄发(yuanxw)

以上是关于Vue 教程(二十)父组件传参子组件的主要内容,如果未能解决你的问题,请参考以下文章

vue父子传参

Vue 组件之间传参!

Vue 教程(二十四)slot 作用域

Vue 之 父组件给子组件传参实现自定义弹窗组件

Vue 之 父组件给子组件传参实现自定义弹窗组件

Vue 之 父组件给子组件的传参的另类方式实现自定义弹窗组件