- Added dependencies for PrimeVue, PrimeUI themes, and TailwindCSS in package.json. - Replaced HelloWorld component with ColorDemo in App.vue to showcase color customization. - Updated HelloWorld component to use PrimeVue Button component. - Configured main.ts to set up PrimeVue with a custom theme and dark mode support. - Enhanced vite.config.ts to include TailwindCSS and auto-import for PrimeVue components. - Created ColorDemo.vue for color customization interface. - Added main.css for global styles, including Tailwind and PrimeUI styles. - Implemented AppConfig.vue and AppTopbar.vue for layout and theme configuration. - Developed useLayout composable for managing color themes and dark mode toggle.
23 lines
687 B
TypeScript
23 lines
687 B
TypeScript
/* eslint-disable */
|
|
// @ts-nocheck
|
|
// biome-ignore lint: disable
|
|
// oxlint-disable
|
|
// ------
|
|
// Generated by unplugin-vue-components
|
|
// Read more: https://github.com/vuejs/core/pull/3399
|
|
|
|
export {}
|
|
|
|
/* prettier-ignore */
|
|
declare module 'vue' {
|
|
export interface GlobalComponents {
|
|
AppConfig: typeof import('./src/components/Holos/AppConfig.vue')['default']
|
|
AppTopbar: typeof import('./src/components/Holos/AppTopbar.vue')['default']
|
|
Button: typeof import('primevue/button')['default']
|
|
HelloWorld: typeof import('./src/components/HelloWorld.vue')['default']
|
|
}
|
|
export interface GlobalDirectives {
|
|
StyleClass: typeof import('primevue/styleclass')['default']
|
|
}
|
|
}
|