<div id="app">
<template><div></div></template>//第二
</div>
<template id="a"><div>12365</div></template>//第三
</body>
<script>
var vm=new Vue({
el:'#app',
template:`<div></div>`,//第一种
template:'#a'//第三
})
<div id="app">
<template><div></div></template>//第二
</div>
<template id="a"><div>12365</div></template>//第三
</body>
<script>
var vm=new Vue({
el:'#app',
template:`<div></div>`,//第一种
template:'#a'//第三
})