this.zip = { id: '', prefecture: '', city: '', town_area: '' }; this.zipMaster = []; this.on('mount', function() { $('body').on('address-selector.open', function(e, data) { this.zipMaster = data.zipMaster; // ダイアログ表示前にレンダリング this.update(); $(this.refs.dialog).modal('show'); }.bind(this)); }); submit(e) { $('body').trigger('address-selector.selected', e.item); $(this.refs.dialog).modal('hide'); }