mirror of
https://github.com/nuxt/nuxt.git
synced 2025-02-24 01:19:58 +00:00
18 lines
292 B
Vue
18 lines
292 B
Vue
|
<script lang="ts">
|
||
|
export default defineNuxtComponent({
|
||
|
name: 'DefineNuxtComponentTest',
|
||
|
setup () {
|
||
|
const value = inject('foo')
|
||
|
return {
|
||
|
value,
|
||
|
}
|
||
|
},
|
||
|
})
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div data-testid="define-nuxt-component-inject-value">
|
||
|
{{ value }}
|
||
|
</div>
|
||
|
</template>
|