10.请求数据
在vue中,有三种常用的数据请求方式: /* 三种数据请求方式 vue-resource axios fetch-jsonp */ 1.vue-resource 1.安装vue-resource cnpm install vue-resource --save 2.在src/main.js中引用 import VueResource from 'vue-resource'; Vue.use(VueResource) 3.在组件中使用home.vue <template> <div> <h2>这是一个首页组件</h2> <button @click="getData()">请求数据</button> <hr> <br> <ul> <li v-for="(item,index) in list" :key="index">{{item.title}}</li> </ul> </div> </template> <script> /* 三种数据请求方式 vue-resource axios fetch-jsonp */ export default { name: 'home', data () { return { msg:'首页组件', list:[] } }, methods:{ getData(){ // 请求数据 var api='http://www.phonegap100