<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script type="text/javascript" src="js/vue.js"></script>
<title></title>
</head>
<body>
<h1>component-1</h1>
<hr>
<!--指令是绑定在标签属性-->
<!--template标签 -->
<div id="app">
<jspang></jspang>
<panda></panda>
</div>
<script type="text/javascript">
Vue.component('jspang',{
template:`<div style="color:red">我是全局的jspang组件</div>`
})
var app=new Vue({
el:'#app',
components:{
"panda":{
template:`<div style="color:green">我是局部的panda组件</div>`
}
}
})
</script>
</body>
</html>