mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-02 22:37:32 +00:00
11 lines
272 B
Vue
11 lines
272 B
Vue
<template>
|
|
<div class="flex items-center gap-2">
|
|
<span>{{ $t('assetBrowser.uploadModelFromCivitai') }}</span>
|
|
<Badge :value="$t('g.beta')" class="bg-white text-black" />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import Badge from 'primevue/badge'
|
|
</script>
|