mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
12 lines
237 B
Vue
12 lines
237 B
Vue
<template>
|
|
<v-btn elevation="2" @click="state.count++">{{
|
|
$t('app.inc.text', { count: state.count })
|
|
}}</v-btn>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { reactive } from 'vue'
|
|
|
|
const state = reactive({ count: 0 })
|
|
</script>
|