refactor: 删除 keepalive 页面删除了 app/pages/keepalive/index.vue 文件,移除了与 keepalive 相关的模板、脚本和样式。

This commit is contained in:
xingyy 2025-02-14 15:27:16 +08:00
parent 4bb0f318e3
commit c770b76cac

View File

@ -1,17 +0,0 @@
<template>
<div class="h-[100vh] w-[100vw]">
<SignaturePad v-model="signature" @change="handleSignatureChange"/>
</div>
</template>
<script setup>
import { ref } from 'vue'
import SignaturePad from '@/components/SignaturePad.vue'
const signature = ref('')
const handleSignatureChange = (imageData) => {
// imageData base64
console.log('签名已更新:', imageData)
}
</script>