index.vue 377 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <view>
  3. <u-navbar :is-back="false" :border-bottom="false"><view class="navbar-tit">点赞</view></u-navbar>
  4. <view class="userHead">
  5. </view>
  6. </view>
  7. </template>
  8. <script>
  9. export default {
  10. data() {
  11. return {
  12. }
  13. methods: {
  14. }
  15. }
  16. }
  17. </script>
  18. <style lang="scss" scoped>
  19. .navbar-tit{
  20. padding-left:15px;
  21. font-size: 24px;
  22. }
  23. </style>