组件间通信---$parent-$children

DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Documenttitle>
head>
<body>
  
  <div id="app">
    
    <home>home>
  div>


  <template id="tpl">
    <div>
      <h2>我是home页 爹h2>
      
      <common-head >common-head>
    div>
  template>
<!-- 引入vue文件 -->
<script src="./vue.js"></script>
<script>
  // 定义公共头部组件
  const CommonHead = {
    template:`
      
儿子
`
, data(){ return { msg:"我是儿子" } }, mounted() { // 获取到父组件 console.log(this.$parent,'parent') } } const Home = { template:"#tpl", data(){ return { msg:'我是爹' } }, mounted() { // 获取到子组件 是一个所有子组件数组 如果想操作子组件 那么必须要通过下表 // 所以不建议使用 console.log(this.$children, 'chilren') // 可以获取到子组件的数据 msg console.log(this.$children[0].msg, 'chilren') }, // 注册子组件 components:{ CommonHead } } // 注册home组件 Vue.component('Home', Home) const vm = new Vue({ el:'#app' }) </script>
body>
html>

你可能感兴趣的:(vue2,vue.js,javascript,前端)