学习是一辈子的事~
2020-03-03
红色代表电源,黑色代表接地,绿色代表信号
阅读更多
sudo periodic daily
1234567891011121314
computed: { fullName: { // getter get: function () { return this.firstName + ' ' + this.lastName }, // setter set: function (newValue) { var names = newValue.split(' ') this.firstName = names[0] this.lastName = names[names.length - 1] } }}