SOURCE

console 命令行工具 X clear

                    
>
console
const child = {
	template:`<div>
  						<span>{{text}}</span>
  					</div>`,
   props:['text']
}

new Vue({
	el:'#app',
  components:{
  	child:child
  }
})
<div id="app">
  <child text="hello world">
  </child>
</div>

本项目引用的自定义外部资源