mark.vue 259 B

12345678910111213141516
  1. <template>
  2. <div>
  3. <tableForm :formType="formType"></tableForm>
  4. </div>
  5. </template>
  6. <script>
  7. import tableForm from "@/components/tableForm";
  8. export default {
  9. components: { tableForm },
  10. data() {
  11. return {
  12. formType: 1,
  13. };
  14. },
  15. };
  16. </script>