添加 请求 修改登录页

This commit is contained in:
GGJ
2023-12-26 08:45:15 +08:00
parent 46eb2d93fb
commit fea95de2da
34 changed files with 5892 additions and 541 deletions

View File

@@ -0,0 +1,11 @@
<template>
<el-button @click="click">测试1</el-button>
</template>
<script setup lang="ts">
import { ref, reactive } from 'vue'
import { getTest } from '@/api/index'
const click = () => {
getTest({ name: '111', paw: 'asd' })
}
</script>
<style lang="scss" scoped></style>