农经大屏
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 426 B

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