<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>父子组件传参-props</title>
</head>
<script src="vue.js"></script>
<body>
<div id="app1">
<parent></parent>
</div>
<script>
Vue.component('child', {
  // 声明 props
  props: ['message'],
  template: '<span>{{ message }}</span>'
})

//父子组件props传参子组件中可以使用props:['myMessage'],在父组件引用子组件时,使用my-message ="xx"

Vue.component('parent',{
    template:'<div><child message="我是子元素"></child></div>'
})
new Vue({
    el:"#app1"
})
</script>
</body>
</html>


Logo

前往低代码交流专区

更多推荐