Something went wrong on our end
Forked from
Språksamlingane / beta.ordbok.uib.no
2161 commits behind the upstream repository.
-
Ole Voldsæter authoredOle Voldsæter authored
Example.vue 691 B
<template>
<li class="example">
<DefElement tag="q" :body="body.quote" @article-click="article_link_click" /><span v-if="body.explanation && body.explanation.content.length"> - </span>
<DefElement tag="span" :body="body.explanation" v-if="body.explanation && body.explanation.content.length" @article-click="article_link_click" />
</li>
</template>
<script>
import DefElement from './DefElement.vue'
export default {
name: 'Example',
props: {
body: Object
},
components: {
DefElement
},
methods: {
article_link_click: function(item) {
this.$emit('article-click', item)
}
}
}
</script>
<style scoped>
ul {
padding-left: 0px;
}
</style>