郵便番号⇢住所
自動入力するのに、ajaxzip3、YubinBangoのライブラリを利用していたが、自動入力した住所など vue.jsのdataとして反映されず、すぐ空白になってしまう。
YubinBango-Core を使う。
Vue.jsにて郵便番号からの住所自動入力
<script src="https://yubinbango.github.io/yubinbango-core/yubinbango-core.js" charset="UTF-8"></script>
watch: {
zip: function(zip){
let _this = this;
new YubinBango.Core(zip, function(addr){
_this.pref = addr.region;
_this.addr = addr.locality + addr.street;
})
}
},