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

<script lang="ts">
import { Component, Vue } from "vue-property-decorator";

@Component({
  name: "LoanApplication",
})
export default class LoanApplication extends Vue {}
</script>

<style scoped></style>