Orbis
Orbis
NNuxt
Created by Fury on 4/5/2025 in #❓・help
Had nuxt project then trying to use nuxt UI
If you cant reproduce the error in the code sandbox make sure your deps are all up to date
36 replies
NNuxt
Created by Fury on 4/5/2025 in #❓・help
Had nuxt project then trying to use nuxt UI
Please try to repoduce it with this codesandbox. If you have the error within the sandbox we can investigate
36 replies
NNuxt
Created by Fury on 4/5/2025 in #❓・help
Had nuxt project then trying to use nuxt UI
I copied your shared code here but i dont see any error: https://codesandbox.io/p/devbox/nuxt-ui-pro3-fdcykl
36 replies
NNuxt
Created by Fury on 4/5/2025 in #❓・help
Had nuxt project then trying to use nuxt UI
@Fury can you share any full reproduction of this error?
36 replies
NNuxt
Created by Fury on 4/5/2025 in #❓・help
Had nuxt project then trying to use nuxt UI
can you try: App.vue
<template>
<UApp>
<UButton>Test</UButton>
</UApp>
</template>
<template>
<UApp>
<UButton>Test</UButton>
</UApp>
</template>
For kapa.ai to understand you, you should not use screenshots. Try to copy paste it, if you have limits do separate messages.
36 replies
NNuxt
Created by Orbis on 4/4/2025 in #❓・help
Nuxt UI v3 vue only x vitest
@kapa.ai its not a nuxt app. I can only use @vue/test-utils
10 replies
NNuxt
Created by SaltTheWound on 3/26/2025 in #❓・help
Nuxt active-link-class
No description
11 replies
NNuxt
Created by Dark_Mift on 1/2/2025 in #❓・help
TS false property not exists message (TS not detecting type in template)
Seems like ProductData itself is an array type.
9 replies
NNuxt
Created by HardWare on 11/14/2024 in #❓・help
Docker nuxt $fetch and useFetch
In production set your backend url to your api domain. Works server and client side
11 replies
NNuxt
Created by HardWare on 11/14/2024 in #❓・help
Docker nuxt $fetch and useFetch
What do you mean with unable to change?
11 replies
NNuxt
Created by HardWare on 11/14/2024 in #❓・help
Docker nuxt $fetch and useFetch
You should alsways take the "public" adress/host. In your case api.localhost. the service name php will only work server-side. Services from a compose stack know each other by the service name, but if you send html and js to your browser and fetch there, your browser does not know php as adress, because it's on your machine and not inside the stack
11 replies
NNuxt
Created by Merite on 11/13/2024 in #❓・help
Add custom config in nuxt ui button
does it solve your problem? my french is a bit rusty these days 🙂
88 replies
NNuxt
Created by Merite on 11/13/2024 in #❓・help
Add custom config in nuxt ui button
you neeed to mention kapa.ai with @ to get an answer
88 replies
NNuxt
Created by Abou on 11/12/2024 in #❓・help
How to use svg
22 replies
NNuxt
Created by Abou on 11/12/2024 in #❓・help
How to use svg
maybe just use last option? 🙂
22 replies
NNuxt
Created by Abou on 11/12/2024 in #❓・help
How to use svg
sorry, this message was draft
22 replies
NNuxt
Created by Abou on 11/12/2024 in #❓・help
How to use svg
as img:
<img src="/path/to/svg />
<img src="/path/to/svg />
inline:
<svg>
<g>...</g>
</svg>
<svg>
<g>...</g>
</svg>
as icon (possible via usocss or nuxt icon, example is unocss):
<div class="i:my-custom-svg-as-icon />
<div class="i:my-custom-svg-as-icon />
or unplugin icons or as vue component:
<!-- example.vue -->
<template>
<svg>
<g>...</g>
</svg>
</tempalte>

<!-- usage -->
<script setup>
import Example from './example.vue'
</script>

<template>
<Example />
</template>
<!-- example.vue -->
<template>
<svg>
<g>...</g>
</svg>
</tempalte>

<!-- usage -->
<script setup>
import Example from './example.vue'
</script>

<template>
<Example />
</template>
22 replies
NNuxt
Created by Abou on 11/12/2024 in #❓・help
How to use svg
What do you mean by using svg with nuxt? As img? Inline? As icon?
22 replies
NNuxt
Created by Mightsrain on 10/30/2024 in #❓・help
Possible to update API path in static build without rebuild.
with build and running node yes. but not with static build
13 replies
NNuxt
Created by Mightsrain on 10/30/2024 in #❓・help
Possible to update API path in static build without rebuild.
not possible if generating the site
13 replies