<template> <div> <a-row> <a-col :span="24"> <div class="tb-title"> <span>科技计划项目承担单位研究资金支出预算明细表<strong>(金额单位:万元)</strong></span> </div> </a-col> </a-row> </div> </template> <script> export default { name: "UnitPaymentInfo", props: { unitPayment: { type: Array, default: () => { return []; }, }, }, data() { return {}; }, methods: {}, }; </script>