33 lines
356 B
Vue
33 lines
356 B
Vue
<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>
|