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