This commit is contained in:
2025-12-17 00:50:51 +08:00
parent 65f72a8c4c
commit 0edb09db43
10 changed files with 513 additions and 911 deletions
+9 -5
View File
@@ -1,16 +1,20 @@
<script setup>
import { useUserStore } from '@/stores/user'
import imageCropper from '@/components/imageCropper.vue';
import croppertest from '@/components/croppertest.vue';
const user = useUserStore()
function t(){
user.login();
}
</script>
<template>
test
<button @click="t">222</button>
{{ user.isLoggedIn }}
<imageCropper></imageCropper>
</template>