<body>
<div id="app">
<terms-of-service></terms-of-service>
</div>
<script>
Vue.component(‘terms-of-service‘,{
template:‘ <div v-once> <h1>Terms of Service</h1> </div> ‘
})
new Vue({
el:‘#app‘
})
</script>
</body>
原文:http://www.cnblogs.com/ItIsInteresting/p/7747742.html