农经大屏
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

25 行
313 B

  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. };