11 2020 档案
vue.js组件使用components和参数传递
摘要:组件路径:/views/home/components/bottom.vue 示例: <template> <div> <h1>底部信息</h1> <div>{{ copyright }} <button v-on:click="setTime">更新时间</button></div> </div>
阅读全文
vue.js/ES6 Promise用法
摘要:Promise主要是为了解决异步请求。语法:new Promise((resolve,reject)=>{resolve();//成功 then()reject();//失败 catch()}).then(()=>{//成功后的处理}).catch(()=>{//失败后的处理});//resolve
阅读全文