mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-20 23:04:06 +00:00
17 lines
303 B
Vue
17 lines
303 B
Vue
<template>
|
|
<SideBarIcon
|
|
icon="pi pi-cog"
|
|
@click="showSetting"
|
|
:tooltip="$t('sideToolBar.settings')"
|
|
/>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { app } from '@/scripts/app'
|
|
import SideBarIcon from './SideBarIcon.vue'
|
|
|
|
const showSetting = () => {
|
|
app.ui.settings.show()
|
|
}
|
|
</script>
|