vue create global components in three ways

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<script src="https://cdn.bootcss.com/vue/2.6.10/vue.js"></script>
<link href="https://cdn.bootcss.com/twitter-bootstrap/4.3.1/css/bootstrap.css" rel="stylesheet">
<link href="https://cdn.bootcss.com/animate.css/3.7.1/animate.css" rel="stylesheet">
</head>
<body>
<div id="app">
<div>{{name}}</div>
<my-Com1></my-Com1>
<my-Com2></my-Com2>
</div>
<template id="myCom3">
<div>
<H1> The third embodiment </ h1>
</div>
 
</template>

<script>
 

Vue.component ( 'myCom1' Vue.extend ({
template: '<h3> camelCasing Note </ h3>'
}));

Vue.component ( 'myCom2', {
template: '<h3> Vue second embodiment </ h3>'
});

Vue.component ( 'myCom2', {
template:'#myCom3'
});

was vm = new Vue ({
the '# app'
data:{
name: 'Hsiao Ming'

}
});
</script>
 
</body>
</html>

Guess you like

Origin www.cnblogs.com/xiannv/p/10992591.html