SOURCE

console 命令行工具 X clear

                    
>
console
<div id="components-demo" class="demo">
	<button-counter></button-counter>
</div>
<script>
	Vue.component('button-counter', {
  data: function () {
    return {
      count: 0
    }
  },
  template: '<button v-on:click="count += 1">You clicked me {{ count }} times.</button>'
})
new Vue({ el: '#components-demo' })

</script>

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