19 lines
232 B
Vue
19 lines
232 B
Vue
|
<script>
|
||
|
import FileTable from '../components/table/index.vue';
|
||
|
|
||
|
export default {
|
||
|
components: {
|
||
|
FileTable,
|
||
|
},
|
||
|
data() {
|
||
|
return {
|
||
|
ref: '',
|
||
|
};
|
||
|
},
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<file-table path="/" />
|
||
|
</template>
|