mirror of
https://github.com/OpenBMB/MiniCPM-V.git
synced 2026-02-05 18:29:18 +08:00
Update to MiniCPM-o 2.6
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
<template>
|
||||
<div class="extra-info">
|
||||
<div class="model-version" v-if="modelVersion">模型版本: {{ modelVersion }}</div>
|
||||
<div class="web-version">前端版本: {{ webVersion }}</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
defineProps({
|
||||
modelVersion: {
|
||||
type: String,
|
||||
default: ''
|
||||
},
|
||||
webVersion: {
|
||||
type: String,
|
||||
default: ''
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
<style lang="less" scoped>
|
||||
.extra-info {
|
||||
position: fixed;
|
||||
top: 62px;
|
||||
left: 4vw;
|
||||
display: flex;
|
||||
.model-version,
|
||||
.web-version {
|
||||
font-size: 12px;
|
||||
color: red;
|
||||
}
|
||||
.model-version {
|
||||
margin-right: 16px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user