mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-15 18:34:50 +00:00
f69126e8f4
Co-authored-by: pooya parsa <pyapar@gmail.com> Co-authored-by: Daniel Roe <daniel@roe.dev>
38 lines
778 B
Vue
38 lines
778 B
Vue
<script setup lang="ts">
|
|
import Label from './label.vue'
|
|
|
|
let count = $ref(0)
|
|
|
|
function inc () {
|
|
count++
|
|
}
|
|
function dec () {
|
|
count--
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<NuxtExampleLayout :show-tips="true" example="with-reactivity-transform">
|
|
<div>
|
|
<Label :count="count" />
|
|
<div class="flex gap-1 justify-center">
|
|
<NButton @click="inc()">
|
|
Inc
|
|
</NButton>
|
|
<NButton @click="dec()">
|
|
Dec
|
|
</NButton>
|
|
</div>
|
|
</div>
|
|
|
|
<template #tips>
|
|
<div class="flex-auto">
|
|
Read the documentation about
|
|
<NLink href="https://vuejs.org/guide/extras/reactivity-transform.html" target="_blank">
|
|
Reactivity Transform.
|
|
</NLink>
|
|
</div>
|
|
</template>
|
|
</NuxtExampleLayout>
|
|
</template>
|