mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-13 09:33:54 +00:00
18 lines
268 B
Vue
18 lines
268 B
Vue
<script lang="ts">
|
|
export default defineNuxtComponent({
|
|
name: 'ClientOnlyScript',
|
|
props: {
|
|
foo: {
|
|
type: String
|
|
}
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<div>client only script component {{ foo }}</div>
|
|
<slot name="test" />
|
|
</div>
|
|
</template>
|