| 12345678910111213141516 |
- <template>
- <div>
- <tableForm :formType="formType"></tableForm>
- </div>
- </template>
- <script>
- import tableForm from "@/components/tableForm";
- export default {
- components: { tableForm },
- data() {
- return {
- formType: 1,
- };
- },
- };
- </script>
|