26947 2024-04-26 22:01:29 +08:00
parent 8243b389f2
commit f828a77c38
2 changed files with 30 additions and 1 deletions

View File

@ -36,7 +36,14 @@
]
},
"ios" : {},
"sdkConfigs" : {}
"sdkConfigs" : {
"oauth" : {
"weixin" : {
"appid" : "",
"UniversalLinks" : ""
}
}
}
}
},
"quickapp" : {},

22
pages/loginInfo/login.vue Normal file
View File

@ -0,0 +1,22 @@
<template>
<div>
<button @click="handleClick">Click me</button>
</div>
</template>
<script setup>
import { ref } from 'vue';
const count = ref(0);
function handleClick() {
count.value++;
}
return {
count,
handleClick,
};
</script>
<style lang="scss">
</style>