agreement.vue 1.5 KB

123456789101112131415161718192021222324252627282930313233
  1. <template>
  2. <view>
  3. <view class="p-4">
  4. <!-- 富文本解析 -->
  5. <uv-parse :content="agreement"></uv-parse>
  6. </view>
  7. </view>
  8. </template>
  9. <script setup>
  10. const agreement = `
  11. <div style="padding: 20px; line-height: 1.6; color: #333;">
  12. <h3 style="color: #1a1a1a; margin-bottom: 16px;">MIT 开源协议</h3>
  13. <p style="margin-bottom: 16px;">
  14. 本项目已签署 MIT 协议,保障用户的使用权益。
  15. </p>
  16. <h4 style="color: #1a1a1a; margin: 20px 0 12px 0;">使用条款</h4>
  17. <p style="margin-bottom: 16px;">
  18. 使用本项目的用户需要遵守如下条款:
  19. </p>
  20. <p style="margin-bottom: 16px;">
  21. 特此授权,免费得以任何目的的使用、复制、修改、合并、出版、发行、散布、再授权及贩售软件及软件的副本,及授予前述权利的许可,无论是否为商业目的。
  22. </p>
  23. <h4 style="color: #1a1a1a; margin: 20px 0 12px 0;">免责声明</h4>
  24. <p style="margin-bottom: 16px;">
  25. 上述软件是按「原样」提供,作者不作任何明示或暗示的保证,包括但不限于对适销性和特定目的的适用性的保证。在任何情况下,无论是在合同诉讼、侵权行为或其它方面,作者都不对因使用本软件或其中所包含的内容所产生的任何直接、间接、偶然、特殊及后果性损害承担责任。
  26. </p>
  27. </div>
  28. `
  29. </script>