15 lines
168 B
Vue
15 lines
168 B
Vue
<script>
|
|
import List from '../components/list.vue';
|
|
|
|
export default {
|
|
components: {
|
|
List,
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<list />
|
|
</div>
|
|
</template>
|