摘要:
总结: 1、v-bind绑定数据:标签属性v-bind:title='xxx',简写:title='xxx', 标签内容{{xxx}} <span :title='message'>{{message}}</span> 2、v-on绑定事件:<span v-on:click='clickMe'>点我 阅读全文
摘要:
一、async基础用法 async函数,会返回一个promise对象,可以用.then调用async函数中return的结果 async function helloAsync() { return "返回结果"; } console.log(helloAsync()) // 输出Promise对象 阅读全文