Skip to content
Snippets Groups Projects
Commit 0b769d6b authored by Ole Voldsæter's avatar Ole Voldsæter
Browse files

litt cleanup

parent ec3ae970
No related branches found
No related tags found
No related merge requests found
......@@ -4,13 +4,13 @@
<div class="" v-if="article.body.pronunciation.length">
<h3>Uttale</h3>
<ul>
<DefElement v-for="(element, index) in article.body.pronunciation" :key="index" :body='element' v-if="element.content" />
<DefElement v-for="(element, index) in article.body.pronunciation" :key="index" :body='element' />
</ul>
</div>
<div class="" v-if="article.body.etymology">
<h3>Etymologi</h3>
<ul>
<DefElement v-for="(element, index) in article.body.etymology" :key="index" :body='element' v-if="element.content" />
<DefElement v-for="(element, index) in article.body.etymology" :key="index" :body='element' />
</ul>
</div>
<div class="">
......@@ -23,7 +23,7 @@
</template>
<script>
import axios from "axios";
//import axios from "axios";
import DefElement from './DefElement.vue'
import Definition from './Definition.vue'
import Header from './Header.vue'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment