|
該当頁 | 該当箇所 |
修正刷 |
訂正箇所 |
訂正事項 |
更新日 |
41 |
構文の下 4行目、5行目 |
第2刷 |
Vue.remove |
Vue.delete |
2020年1月22日 |
41 |
脚注18 |
第2刷 |
remove |
delete |
2020年1月22日 |
77 |
リスト3-32 model_file.js 8行目~ |
第2刷 |
methods: {
onchange: function() {
let fl = this.$refs.upfile.files[0];
...中略...
.then(function (text) {
this.message = text;
})
...中略...
}
} |
methods: {
onchange: function() {
let that = this;
let fl = this.$refs.upfile.files[0];
...中略...
.then(function (text) {
that.message = text;
})
...中略...
}
} |
2020年2月16日 |
96 |
リスト 3-53 for_obj.html |
第3刷 |
<ul v-for="(value, key, i) in book">
<li>{{ key }} :{{ value }}</li>
</ul> |
<ul>
<li v-for="(value, key, i) in book">{{ key }} :{{ value }}</li>
</ul> |
2020年7月11日 |
136 |
本文1行目の下のサンプルコード |
未 |
ng-model="name" |
v-model="name" |
2020年11月11日 |
160 |
リスト4-12 2行目 |
第2刷 |
onclick() { |
onclick:function() { |
2020年4月02日 |
182 |
リスト5-5 tabs.html 6行目 |
第2刷 |
v-on:click.prepend |
v-on:click.prevent |
2020年4月07日 |
208 |
リスト5-25 1行目 |
第2刷 |
<script src="//cdnjs.cloudflare.com/..."> |
<script src="https://cdnjs.cloudflare.com/..."> |
2020年4月02日 |
307 |
図8-2 |
第2刷 |
コントポーネント |
コンポーネント |
2019年11月06日 |
391 |
表10-6 1行目 メソッド名 |
未 |
attributeEquals |
attributeContains |
2021年11月11日 |
|