Vue定義全局組件和局部組件的方法


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



</style>
</head>

<body>
<div id="app">

<index></index>
<login></login>

</div>


<script>
Vue.component('index',{
template:`
<h1>這是一個全局的組件</h1>
`
})
var vm = new Vue({
el: '#app',
data: {
 
},
components:{
login:{
template:`
<h1>這是一個局部的組件</h1>
`
}
}
 

 

});
</script>

</body>

</html>


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM