mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-01-11 02:15:17 +00:00
1 line
658 B
Plaintext
Vendored
Generated
1 line
658 B
Plaintext
Vendored
Generated
{"version":3,"file":"BaseViewTemplate-B0LQc8op.js","sources":["../../src/views/templates/BaseViewTemplate.vue"],"sourcesContent":["<template>\n <div\n class=\"font-sans w-screen h-screen flex items-center justify-center pointer-events-auto overflow-auto\"\n :class=\"[\n props.dark\n ? 'text-neutral-300 bg-neutral-900 dark-theme'\n : 'text-neutral-900 bg-neutral-300'\n ]\"\n >\n <slot></slot>\n </div>\n</template>\n\n<script setup lang=\"ts\">\nconst props = withDefaults(\n defineProps<{\n dark: boolean\n }>(),\n {\n dark: false\n }\n)\n</script>\n"],"names":[],"mappings":";;;;;;;AAcA,UAAM,QAAQ;;;;;;;;;;;;"} |