mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-13 21:05:19 +00:00
18 lines
230 B
Vue
18 lines
230 B
Vue
<script setup lang="ts">
|
|
import { ref } from 'vue';
|
|
|
|
const count = ref(0);
|
|
</script>
|
|
|
|
<template>
|
|
<el-button @click="count++">
|
|
{{ count }}
|
|
</el-button>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.el-button {
|
|
font-size: 30px;
|
|
}
|
|
</style>
|