<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="./vue.js"></script>
</head>
<body>
<div id="app">
<mb1></mb1>
<mb2></mb2>
</div>
<!-- 模板 写法一 -->
<script type="text/x-template" id="mb1">
<div>
模板分离 写法一
</div>
</script>
<!-- template -->
<template id="mb2">
<div>
模板分离 写法二 template
</div>
</template>
<script>
new Vue({
el:'#app',
components:{
mb1:{
template:"#mb1"
},
mb2:{
template:"#mb2"
}
}
})
</script>
</body>
</html>
