Article.vue 436 B

1234567891011121314151617181920212223
  1. <template>
  2. <article class="card article">
  3. <header>
  4. <h1 v-html="item.title"></h1>
  5. <h4 class="body" v-html="item.body"></h4>
  6. </header>
  7. <section class="images">
  8. <figure v-html="item.field_visuel"></figure>
  9. </section>
  10. </article>
  11. </template>
  12. <script>
  13. import { JSONAPI } from 'vuejs/api/json-axios'
  14. export default {
  15. name: "Article",
  16. props: ['item']
  17. }
  18. </script>
  19. <style lang="scss" scoped>
  20. </style>