Skip to content
Snippets Groups Projects
Example.vue 432 B
Newer Older
<template>
  <li class="example">
      <ul>
        <DefElement :body="body.quote" :class="'quote'" />
        <DefElement :body="body.explanation" v-if="body.explanation" />
      </ul>
  </li>
</template>

<script>
import DefElement from './DefElement.vue'

export default {
  name: 'Example',
  props: {
    body: Object
  },
  components: {
    DefElement
  }
}

</script>
<style scoped>
ul {
    padding-left: 0px;
}
</style>