[配置]配置router

This commit is contained in:
唐明明
2021-07-23 11:52:32 +08:00
parent 17679fa432
commit 564ed944d4
57 changed files with 10291 additions and 92 deletions

32
pages/login/login.vue Normal file
View File

@@ -0,0 +1,32 @@
<template>
<view>
<button type="default" @click="login">登录</button>
</view>
</template>
<script>
export default {
data() {
return {
}
},
mounted() {
},
methods: {
login(){
uni.login({
provider: 'univerify',
univerifyStyle: {
fullScreen: true
}
})
}
}
}
</script>
<style>
</style>