LoanApplication.vue 345 字节
<template>
  <div>贷款申请</div>
</template>

<script lang="ts">
import { Component, Vue } from "vue-property-decorator";
/**
 * @Description 贷款申请
 * @Author JiangTao
 * @Date 2021-11-10 下午 03:32
 */
@Component({
  name: "LoanApplication",
})
export default class LoanApplication extends Vue {}
</script>

<style scoped></style>