Files
AFFiNE-Mirror/plugins/vue-hello-world/src/app.vue
T
Quincy Qiu 90f3fe0e29 fix(plugin): allow multiple loads assets (#3741)
(cherry picked from commit 52102ee792)
2023-08-14 20:38:19 -04: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>