mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2026-01-01 02:52:48 +00:00
39 lines
1.0 KiB
Vue
39 lines
1.0 KiB
Vue
<template>
|
|
<div class="shared-model-manage">
|
|
<ContentContainer>
|
|
<template #header>
|
|
<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>
|
|
</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 { t } from '@/locales'
|
|
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>
|