<body> <div id="app"> <hello-world></hello-world> </div> <script type="text/x-template" id="hello-world-template"> <p>Hello hello hello</p> </script> <script> Vue.component(‘hello-world‘,{ template:‘#hello-world-template‘ }) new Vue({ el:‘#app‘ }) </script> </body>
原文:http://www.cnblogs.com/ItIsInteresting/p/7747723.html