mirror of
https://github.com/Dannecron/ich-lerne-deutsch.git
synced 2025-12-25 21:02:35 +03:00
16 lines
250 B
Vue
16 lines
250 B
Vue
<template>
|
|
<div>
|
|
<articles-list></articles-list>
|
|
</div>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
import ArticlesList from '@/components/ArticlesList';
|
|
export default {
|
|
components: {
|
|
ArticlesList,
|
|
},
|
|
};
|
|
</script>
|