SOURCE

console 命令行工具 X clear

                    
>
console
const Counter = {
  data() {
    return {
      counter: 0
    }
  }
}

Vue.createApp(Counter).mount('#counter')
<div id="counter">
  Counter: {{ counter }}
</div>

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