Home > Web Front-end > JS Tutorial > body text

How to implement parent component to pass multiple data to child component in vue

亚连
Release: 2018-06-02 14:32:55
Original
5201 people have browsed it

Below I will share with you an example of a vue parent component passing multiple data to a child component. It has a good reference value and I hope it will be helpful to everyone.

When we usually use VUE components, we often need to pass some data from the parent component to the child component. At this time, we usually have many methods. There are two main situations here:

First type: static data transfer: transfer a string

Second type: dynamic data transfer: binding Pass a string, an array, or an object

Here we mainly look at dynamic data binding. For example, you can encapsulate all the data you need in an array or an object and pass it to the subcomponent.

But there is a question. What would you do if you have two data, an object and an array, that need to be passed from the parent component to the child component at the same time?

Here is an example to illustrate:

JS of subcomponent

/**
 * 收货地址组件 马优晨
 **/
define(function(require, exports, module){
 var $ = require("lib_cmd/zepto-cmd"),
  Vue = require('lib_cmd/vue-cmd'),
  main = require("js_cmd/main-cmd"),
 var vm= Vue.component('myaddress', {
  template: '\
  <p data-role="data-widget" data-widget="address-editor" class="address_mask" id="address-editor">\
  </p>&#39;,
  props:["address","ids"],
  methods: {
  },
  created: function () {
  }
 });
 module.export= vm;
})
/*注册名为“myaddress”的组件 ,从父组件传递过来两个数据"address","ids"*/
Copy after login

Parent component EJS page

<%- include ../../header %>
<link href="/css/vd/activity/myAward.css?v=<%= config.version %>" rel="external nofollow" rel="stylesheet" />
<p data-role="container" class="body <%= pageName %>" id="myAward">
 <myaddress :address="editAddr" :ids="ids"></myaddress>
</p>
 <script>
  seajs.use(&#39;js_cmd/vd/activity/myAward-cmd&#39;);
 </script>
<%- include ../../footer %>
/*在定义的组件 “myaddress”中绑定两个父组件的数据 "editAddr" "ids"*/
Copy after login

Parent component JS page

/**
 * Created by youchen.ma on 2017/6/21.
 */
define(function (require, exports, module) {
 var $ = require("lib_cmd/zepto-cmd"),
  Vue = require("lib_cmd/vue-cmd"),
  main = require("js_cmd/main-cmd"),
  Address = require(&#39;js_cmd/vd/venue/widget/venueEditAddress-cmd&#39;) //引入子组件的JS文件
  var vm = new Vue({
  el: &#39;#myAward&#39;,
  data:{ 
   editAddr:{},  
   ids:""    
   }
  })
})
Copy after login

The above is me I compiled it for everyone, I hope it will be helpful to everyone in the future.

Related articles:

How to use Vuex to implement a note-taking application

Commonly used request method aliases based on Axios (detailed explanation)

Organization of data-[*] attributes in Bootstrap

The above is the detailed content of How to implement parent component to pass multiple data to child component in vue. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!