LoanApplication.vue 256 字节 编辑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: "LoanApplication", }) export default class LoanApplication extends Vue {} </script> <style scoped></style>