agreement.vue 286 B

123456789101112131415161718192021222324
  1. <template>
  2. <view class="main">
  3. <rich-text :nodes="nodeEl"></rich-text>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. nodeEl: ""
  11. }
  12. },
  13. onLoad(op) {
  14. this.nodeEl = op.data
  15. }
  16. }
  17. </script>
  18. <style scoped>
  19. .main {
  20. min-height: 100vh;
  21. }
  22. </style>