mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-16 10:54:49 +00:00
de62520990
Co-authored-by: Pooya Parsa <pooya@pi0.io>
24 lines
334 B
Vue
24 lines
334 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>
|
|
|
|
<style>
|
|
:root {
|
|
--client-only: 'client-only';
|
|
}
|
|
</style>
|