欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Vue.js学习笔记

程序员文章站 2024-03-17 11:43:10
...
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Vue.js学习模仿用</title>
  <script src="../Vue.js/vue.js"></script>
</head>
<body>
<div id="app">
    <input type="text" v-model="parentMsg">
    <my-component :my-message="parentMsg"></my-component>//注意my-message
    
</div>

</body>
<script>
//注册
Vue.component('my-component',{
    props:['my-message'],//注意my-message
    template:'<span>{{myMessage}}</span>'//注意myMwssage
})
//初始化根实例
new Vue({
    el:'#app',
    data:{
        parentMsg:'aa'
    }
    
})

</script>
</html>

三处地方却又两个不同的写法,如果在html里面用-连接字符的话是无法识别的 ,会报错,所以只能用驼峰记法,而在Vue.js里驼峰记法和-连接记法一样。

转载于:https://www.jianshu.com/p/d56359cc8f7e