SOURCE

console 命令行工具 X clear

                    
>
console
new Vue({
    el: "#app",
    data() {
        return {
            msg: "hello",
            serverData: [
                {id: 1, title: "aaa"},
                {id: 2, title: "bbb"},
                {id: 3, title: "ccc"},
            ]
        }
    }
})
<div id="app">
    <div v-for="(item, index) in serverData" :key="index">
        <input  type="checkbox" />
    </div>
    
</div>

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