chart4.vue 381 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <template>
  2. <view class="content">
  3. 111{{nowData}}
  4. <br>
  5. 222{{bindData}}
  6. </view>
  7. </template>
  8. <script>
  9. export default {
  10. name: 'chart4',
  11. props:{
  12. bindData:{
  13. type:Object,
  14. default: ''
  15. },
  16. },
  17. data() {
  18. return {
  19. nowData:this.bindData
  20. }
  21. },
  22. onLoad() {
  23. },
  24. methods: {
  25. }
  26. }
  27. </script>
  28. <style>
  29. </style>