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