用template標(biāo)簽構(gòu)建組件
- template 組件中只能存在一個根節(jié)點
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>vue組件</title>
<script src="js/vue.js"></script>
</head>
<body>
<div id="app1">
<my-com></my-com>
</div>
<template id="myCom">
<div>這是template標(biāo)簽構(gòu)建的組件</div>
</template>
<script>
//全局注冊組件------------------------------------------------------------------
Vue.component('my-com',{
template: '#myCom'
});
var app1 = new Vue({
el: '#app1'
});
//局部注冊組件--------------------------------------------------------------
var app1 = new Vue({
el: '#app1',
components:{
'my-com':{
template: '#myCom'
}
}
});
</script>
</body>
</html>
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者