<template>
|
<app-page-tab v-bind="tabPageProps">
|
<template #index="scope">
|
<index-page v-bind="indexPageProps"/>
|
</template>
|
</app-page-tab>
|
</template>
|
|
<script setup name="logInterface">
|
import {useI18n} from 'vue-i18n';
|
|
const {t} = useI18n();
|
|
import IndexPage from './IndexPage';
|
|
const indexPageRef = ref();
|
|
const indexPageProps = {
|
}
|
|
const tabPageProps = {
|
ref: indexPageRef,
|
tabList: [{name: 'index', title: t('views.log.logInterface.title')}],
|
};
|
|
</script>
|
|
<style scoped lang="scss">
|
</style>
|