mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 00:53:55 +00:00
e6ca07bdc0
Co-authored-by: Daniel Roe <daniel@roe.dev> Co-authored-by: jhuang@hsk-partners.com <jhuang@hsk-partners.com>
19 lines
347 B
Vue
19 lines
347 B
Vue
<script setup lang="ts">
|
|
const props = defineProps<{ foo: string }>()
|
|
const count = ref(0)
|
|
const add = () => count.value++
|
|
|
|
defineExpose({ add })
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<div>client only script setup component {{ props.foo }}</div>
|
|
<button @click="add">
|
|
{{ count }}
|
|
</button>
|
|
|
|
<slot name="test" />
|
|
</div>
|
|
</template>
|