edit.vue 530 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. </template>
  3. <script lang="ts">
  4. import { computed, defineComponent, inject, reactive, ref, toRefs } from "vue";
  5. import { UserOutlined, LockOutlined } from "@ant-design/icons-vue";
  6. import useFormLayout from "@/hooks/useFormLayout";
  7. import useApp from "@/hooks/useApp";
  8. import { ActionType } from "@/store/modules/app/_type";
  9. const EditContent = defineComponent({
  10. name: "Login",
  11. components: {
  12. UserOutlined,
  13. LockOutlined,
  14. },
  15. setup() {
  16. return {};
  17. },
  18. });
  19. export default EditContent;
  20. </script>