Files
AFFiNE-Mirror/plugins/vue-hello-world/src/app.vue
T
2023-08-14 18:44:52 +00:00

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>