mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-06 08:00:05 +00:00
14 lines
320 B
Vue
14 lines
320 B
Vue
<template>
|
|
<BaseViewTemplate dark>
|
|
<div class="max-w-screen-sm w-screen p-8">
|
|
<ProgressBar mode="indeterminate" />
|
|
</div>
|
|
</BaseViewTemplate>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import ProgressBar from 'primevue/progressbar'
|
|
|
|
import BaseViewTemplate from './templates/BaseViewTemplate.vue'
|
|
</script>
|