ContractSigningAndBilling.vue 285 字节 编辑Web IDE 1 2 3 4 5 6 7 8 9 10 11 12 13 14 <template> <div>合同签订及出账</div> </template> <script lang="ts"> import { Component, Vue } from "vue-property-decorator"; @Component({ name: "ContractSigningAndBilling", }) export default class ContractSigningAndBilling extends Vue {} </script> <style scoped></style>