首页 > 其他 > 详细

驼峰标识

时间:2019-11-23 09:36:24      阅读:75      评论:0      收藏:0      [点我收藏+]
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<div id="app">
<cpn :c-info="info"></cpn><!--使用驼峰标识的话需要使用- -->
</div>
<body>

<template id="cpn1">
<div>
<h2>{{cInfo}}</h2><!--模板中允许使用驼峰标识-->
</div>
</template>


<script src="vue.js"></script>
<script>
// <!-- 用来实现三个组件合并-->
const cpn={
template: ‘#cpn1‘,
props:{
cInfo:{ /*使用驼峰标识*/
type:Object,
default() {
return {};
}
}
}
};

const app=new Vue({ /*看成root组件*/
el:‘#app‘,
data:{
info:{
name:‘why‘,
age:19,
height:22
}
},
components:{
cpn
}
})
</script>
</body>
</html>

驼峰标识

原文:https://www.cnblogs.com/Damocless/p/11915246.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!