猎豆优选小程序

icp.vue 476B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <view class="icp-container">
  3. <view>Copyright © 2015-2025 猎豆优选</view>
  4. <view>杭州猎豆信息技术有限公司 All rights reserved</view>
  5. <view>浙ICP备16001297号-1</view>
  6. </view>
  7. </template>
  8. <script>
  9. export default {
  10. name:"icp",
  11. data() {
  12. return {
  13. };
  14. }
  15. }
  16. </script>
  17. <style scoped lang="scss">
  18. .icp-container{
  19. width: 100%;
  20. color: #ccc;
  21. font-size: 24rpx;
  22. line-height: 40rpx;
  23. text-align: center;
  24. padding: 40rpx;
  25. }
  26. </style>