chore(module): update

This commit is contained in:
Benjamin Canac
2024-03-07 16:57:14 +01:00
parent 46e27304e8
commit b08d2bd3c6
5 changed files with 28 additions and 15 deletions

View File

@@ -1,6 +1,6 @@
<script lang="ts">
import { tv, type VariantProps } from 'tailwind-variants'
// import appConfig from '#build/app.config'
import appConfig from '#build/app.config'
import type { LinkProps } from '#ui/components/Link.vue'
import theme from '#build/ui/button'
@@ -42,6 +42,7 @@ export interface ButtonSlots {
import { computed } from 'vue'
import { useForwardProps } from 'radix-vue'
import { reactiveOmit } from '@vueuse/core'
import { useAppConfig } from '#app'
import UIcon from './Icon.vue'
defineOptions({ inheritAttrs: false })

5
src/runtime/types/app.config.d.ts vendored Normal file
View File

@@ -0,0 +1,5 @@
declare module '#build/app.config' {
import type { AppConfig } from '@nuxt/schema'
const _default: AppConfig
export default _default
}