UnisKB/ui/src/views/system-shared/ModelSharedIndex.vue

26 lines
728 B
Vue
Raw Normal View History

2025-06-21 03:22:40 +00:00
<template>
<ContentContainer>
<template #header>
2025-06-24 08:53:58 +00:00
<el-breadcrumb separator-icon="ArrowRight">
<el-breadcrumb-item>{{ t('views.system.shared.shared_resources') }}</el-breadcrumb-item>
<el-breadcrumb-item>
<h5 class="ml-4 color-text-primary">{{ t('views.model.title') }}</h5>
</el-breadcrumb-item>
</el-breadcrumb>
2025-06-21 03:22:40 +00:00
</template>
<el-card style="--el-card-padding: 0">
2025-06-24 08:53:58 +00:00
<modelListContainer />
2025-06-21 03:22:40 +00:00
</el-card>
</ContentContainer>
</template>
<script lang="ts" setup>
import { onMounted, ref, computed } from 'vue'
import { t } from '@/locales'
2025-06-24 08:53:58 +00:00
import modelListContainer from '@/views/model/index.vue'
2025-06-21 03:22:40 +00:00
2025-06-24 08:53:58 +00:00
onMounted(() => {})
2025-06-21 03:22:40 +00:00
</script>
2025-06-24 08:53:58 +00:00
<style lang="scss" scoped></style>