index.vue 310 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <view>
  3. <view class="page">
  4. {{remarks}}
  5. </view>
  6. </view>
  7. </template>
  8. <script>
  9. export default {
  10. data() {
  11. return {
  12. remarks: ''
  13. }
  14. },
  15. onLoad: function(option) {
  16. this.remarks = option.remarks;
  17. },
  18. methods: {
  19. }
  20. }
  21. </script>
  22. <style>
  23. .page {
  24. padding: 40rpx;
  25. }
  26. </style>