Files
AFFiNE-Mirror/packages/plugins/vue-hello-world/src/app.vue
2023-10-18 15:30:08 +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>