create.vue 285 B

1234567891011121314151617
  1. <template>
  2. <UserEditor
  3. action="create"
  4. :initialValue="emptyUser"
  5. />
  6. </template>
  7. <script setup>
  8. definePageMeta({
  9. name: "admin:userCreate",
  10. middleware: ["signed-in", "admin"]
  11. })
  12. const emptyUser = _mapValues(userFields, "initialValue")
  13. </script>
  14. <style scoped></style>