index.vue 419 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <view class="container">
  3. <button @click="wxLogin">微信一键登录</button>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {}
  10. },
  11. methods: {
  12. wxLogin() {
  13. uni.login({
  14. provider: 'weixin', //使用微信登录
  15. success: function(loginRes) {
  16. console.log(loginRes);
  17. }
  18. });
  19. }
  20. }
  21. }
  22. </script>
  23. <style>
  24. .container {}
  25. </style>