copyright.vue 306 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <view class="copyright">
  3. <image :src="statics.copyright"></image>
  4. </view>
  5. </template>
  6. <script>
  7. export default{
  8. data(){
  9. return {
  10. }
  11. }
  12. }
  13. </script>
  14. <style>
  15. .copyright{
  16. padding: 48rpx;
  17. text-align: center;
  18. }
  19. .copyright image{
  20. width: 208rpx;
  21. height: 76rpx;
  22. }
  23. </style>