摘要: ES5 构造函数 function Person(){ this.name='建林'; this.age=18; this.say=function(){ console.log('person的say') } } let p1=new Person(); console.log(p1.name); 阅读全文
posted @ 2021-06-29 21:53 还有什么值得拥有 阅读(74) 评论(0) 推荐(0)
摘要: <template> <el-table :data="tableData" :key="random" style="width: 100%" :header-cell-style="{ 'text-align': 'center' }" :cell-style="{ 'text-align': 阅读全文
posted @ 2021-06-29 16:01 还有什么值得拥有 阅读(1721) 评论(0) 推荐(0)