农经大屏
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
426 B

  1. import Pannel from '@/components/pannel/index.vue';
  2. import ScrollTable from '@/components/scroll-table/index.vue';
  3. export default {
  4. components: {
  5. ScrollTable,
  6. Pannel
  7. },
  8. data () {
  9. return {
  10. headers: ['资源名称', '类别', '面积(亩)', '处置类型', '部门'],
  11. data: [
  12. ['资源名称', '类别', '面积(亩)', '处置类型', '部门']
  13. ]
  14. };
  15. }
  16. };