SOURCE

console 命令行工具 X clear

                    
>
console
let app = new Vue({
  el: '#app',
  data: {
    info: ''
  },
  methods: {
  	Get: function() {
    	this.info = '';
    	axios.get('https://ziptasticapi.com/90210')
      		 .then((response) => {
           		let res = response.data;
              this.info = res;
           });
    }
  }
});
<div id="app">
  <button @click="Get">Get</button>
  <p>{{ info.country }}</p>
  <p>{{ info.state }}</p>
  <p>{{ info.city }}</p>
</div>

本项目引用的自定义外部资源