43 lines
809 B
Vue
43 lines
809 B
Vue
<template>
|
|
<div class="main-wrapper">
|
|
|
|
<div class="row">
|
|
<div class="col" v-if="isLoaded">
|
|
<DataTable title="API管理"
|
|
:headers="tableHeaders"
|
|
:rows="tableData"
|
|
:data-count="dataCount" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import DataTable from '@/components/DataTable.vue';
|
|
|
|
|
|
export default {
|
|
name: "APIs",
|
|
components: {
|
|
DataTable
|
|
},
|
|
data() {
|
|
return {
|
|
isLoaded: false,
|
|
tableHeaders: [
|
|
{ text: "", value: "", width: "" }
|
|
],
|
|
tableData: [],
|
|
dataCount: 0
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
},
|
|
mounted(){
|
|
this.isLoaded = true
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped></style> |