123456789101112131415161718192021222324252627282930313233343536373839 |
- <template>
- <view class="content">
- 111{{nowData}}
- <br>
- 222{{bindData}}
- </view>
- </template>
- <script>
-
-
- export default {
- name: 'chart4',
-
- props:{
- bindData:{
- type:Object,
- default: ''
- },
- },
- data() {
- return {
- nowData:this.bindData
- }
- },
- onLoad() {
- },
- methods: {
-
- }
- }
- </script>
- <style>
-
- </style>
|