mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-16 10:54:49 +00:00
12 lines
213 B
JavaScript
12 lines
213 B
JavaScript
import { defineComponent } from 'vue'
|
|
|
|
export default defineComponent({
|
|
name: 'DevOnly',
|
|
setup (_, props) {
|
|
if (process.dev) {
|
|
return () => props.slots.default?.()
|
|
}
|
|
return () => null
|
|
}
|
|
})
|