码迷,mamicode.com
首页 > 其他好文 > 详细

驼峰标识

时间:2019-11-23 09:47:13      阅读:99      评论:0      收藏:0      [点我收藏+]

标签:meta   inf   head   合并   需要   template   tle   script   驼峰   

<!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>

驼峰标识

标签:meta   inf   head   合并   需要   template   tle   script   驼峰   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!