mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
38 lines
1014 B
Vue
38 lines
1014 B
Vue
<template>
|
|
<div class="shared-model-manage">
|
|
<ContentContainer>
|
|
<template #header>
|
|
<el-breadcrumb separator-icon="ArrowRight">
|
|
<el-breadcrumb-item>{{ $t('views.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>
|
|
</template>
|
|
<el-card style="--el-card-padding: 0">
|
|
<modelListContainer />
|
|
</el-card>
|
|
</ContentContainer>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { onMounted, ref, computed } from 'vue'
|
|
import modelListContainer from '@/views/model/index.vue'
|
|
|
|
onMounted(() => {})
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.shared-model-manage {
|
|
padding: 8px 12px 8px 4px;
|
|
:deep(.model-list-height) {
|
|
height: calc(var(--app-main-height) - 70px);
|
|
padding-right: 0 !important;
|
|
}
|
|
:deep(.provider-list) {
|
|
height: calc(var(--app-main-height) - 70px);
|
|
}
|
|
}
|
|
</style>
|