| 1234567891011121314151617 |
- <template>
- <UserEditor
- action="create"
- :initialValue="emptyUser"
- />
- </template>
- <script setup>
- definePageMeta({
- name: "admin:userCreate",
- middleware: ["signed-in", "admin"]
- })
- const emptyUser = _mapValues(userFields, "initialValue")
- </script>
- <style scoped></style>
|