import Pannel from '@/components/pannel/index.vue'; import ScrollTable from '@/components/scroll-table/index.vue'; export default { components: { ScrollTable, Pannel }, data () { return { headers: ['合同编码', '合同名称', '合同截止日期', '部门'], data: [['合同编码', '合同名称', '合同截止日期', '部门']] }; }, created () { }, mounted () { }, methods: { } };