index.vue 378 B

1234567891011121314151617
  1. <template>
  2. <div>
  3. <p>Nuxt News</p>
  4. <ul v-for="headline in headlines" :key="headline.id">
  5. <li>{{ headline }}</li>
  6. </ul>
  7. </div>
  8. </template>
  9. <script>
  10. export default {
  11. async asyncData ({ app }) {
  12. const topHeadlines = await app.$axios.$get('https://newsapi.org/v2/top-headlines?country=us')
  13. return { headlines: topHeadlines.articles }
  14. }
  15. }
  16. </script>