login.vue 352 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <view>
  3. <button @click="login">登录</button>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. }
  11. },
  12. methods: {
  13. login(){
  14. uni.switchTab({
  15. url:"/pages/index/index"
  16. })
  17. }
  18. }
  19. }
  20. </script>
  21. <style lang="scss" scoped>
  22. @import '../../common/css/common.css';
  23. @import './index.rpx.css';
  24. </style>