摘要: // 全局组件和局部组件 Vue.component('组件名',配置对象) Vue.component('global', { template: ` <div> <h1>全局组件<h1> // 局部组件 <gl-demo></gl-demo> </div> `, data() { return 阅读全文
posted @ 2020-06-03 23:52 糖锡 阅读(177) 评论(0) 推荐(0)
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2020-06-03 23:27 糖锡 阅读(0) 评论(0) 推荐(0)
摘要: // 常规的数组排序的方法 a-b升序 b-a降序 arr.sort(function(a,b) { return a - b }) // sort内部是有嵌套排序机制的 两级排序 this.productSourceList = productSourceList.sort(this.sortBy 阅读全文
posted @ 2020-06-03 17:59 糖锡 阅读(680) 评论(0) 推荐(0)