niaogege / niaogege.github.io

博客,记录生活,记录code
http://niaogege.cn
2 stars 1 forks source link

前端协作的注意事项 #25

Open niaogege opened 6 years ago

niaogege commented 6 years ago

Prop 是单向绑定的:当父组件的属性变化时,将传导给子组件,但是反过来不会。这是为了防止子组件无意间修改了父组件的状态,来避免应用的数据流变得难以理解!

niaogege commented 6 years ago

稳住,先做好排期,ui两周内完成,我尽量用这5天的时间搞定

niaogege commented 6 years ago

table表格组件中的几个方法:

<div style="margin-top: 20px">
        <el-button @click="toggleSelection([tableData[1], tableData[0]])">切换第二、第三行的选中状态</el-button>
        <el-button @click="toggleSelection()">取消选择</el-button>
      </div>

JS

      toggleSelection(rows) {
        if (rows) {
          rows.forEach(row => {
            this.$refs.multipleTable.toggleRowSelection(row);
          });
        } else {
          this.$refs.multipleTable.clearSelection();
        }
      },
      handleSelectionChange(val) {
        this.multipleSelection = val;
        console.log(this.multipleSelection,'multipleS')
      },
niaogege commented 6 years ago

Table Events 在表格中填写@selection-change="handleSelectionChange" 这叫事件名, 而method方法名,则是已经封装好的方法,直接用即可,比如: this.$refs.multipleTable.clearSelection();

niaogege commented 6 years ago

四级商品组和二级销售目录???什么鬼

niaogege commented 6 years ago
"Print to console": {
        "prefix": "log",
        "body": [
            "console.log('$1');",
            "$2"
        ],
        "description": "Log output to console"
    }

snippet[ˈsnɪpɪt],或者说「code snippet」,也即代码段,指的是能够帮助输入重复代码模式,比如循环或条件语句,的模板。通过 snippet ,我们仅仅输入一小段字符串,就可以在代码段引擎的帮助下,生成预定义的模板代码,接着我们还可以通过在预定义的光标位置之间跳转,来快速补全模板。