农经大屏
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.js 313 B

1 day ago
123456789101112131415161718192021222324
  1. import BlockValue from '@/components/value/index.vue';
  2. export default {
  3. components: {
  4. BlockValue
  5. },
  6. props: {
  7. data: {
  8. type: Array,
  9. default: function () {
  10. return []
  11. }
  12. }
  13. },
  14. data () {
  15. return {
  16. };
  17. },
  18. created () {
  19. },
  20. mounted () {
  21. },
  22. methods: {
  23. }
  24. };