11 lines
151 B
Vue
11 lines
151 B
Vue
<script setup lang="ts">
|
|
// 表单逻辑已抽离到 MerchantForm 组件
|
|
</script>
|
|
|
|
<template>
|
|
<MerchantForm />
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style> |