index.vue 494 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <template>
  2. <view class="fui-wrap">
  3. <u-button
  4. text="默认按钮"
  5. size="normal"
  6. type="info"
  7. @click="click"
  8. ></u-button>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. data() {
  14. return {
  15. }
  16. },
  17. onLoad() {
  18. },
  19. methods: {
  20. },
  21. onShareAppMessage() {
  22. return {
  23. title: 'First UI组件库'
  24. }
  25. }
  26. }
  27. </script>
  28. <style>
  29. .fui-banner__box {
  30. width: 100%;
  31. min-height: 538rpx;
  32. position: relative;
  33. background-color: #EDF9FF;
  34. }
  35. </style>