custom-tab-bar-tab2.uvue 278 B

123456789101112131415161718192021222324
  1. <template>
  2. <view class="page">
  3. <button type="primary">登录</button>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. }
  11. },
  12. created() {
  13. },
  14. methods: {
  15. }
  16. }
  17. </script>
  18. <style>
  19. .page {
  20. padding: 15px;
  21. }
  22. </style>