detail.vue 428 B

12345678910111213141516171819202122
  1. <template>
  2. <view class="root">
  3. <view class="uni-padding-wrap">
  4. <view class="uni-title">这是选项卡页面跳转详情页面的演示,下面是页面跳转时传递过来的标题:</view>
  5. <view class="uni-title">{{title}}</view>
  6. </view>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. data() {
  12. return {
  13. title: ''
  14. }
  15. },
  16. onLoad(e) {
  17. this.title = e.title || '';
  18. }
  19. }
  20. </script>
  21. <style>
  22. </style>