11 lines
437 B
Plaintext
11 lines
437 B
Plaintext
<script setup lang="ts">
|
|
import { EditFormPage } from '@/shared/ui/screen-types'
|
|
import { KsButton, KsTextField } from '@/shared/ui/components'
|
|
</script>
|
|
<template>
|
|
<EditFormPage title="__TITLE__" state="READY" :evidence="{ version: '__CONTRACT_VERSION__' }" @submit="undefined">
|
|
<KsTextField model-value="" label="이름" />
|
|
<template #footer><KsButton label="저장" type="submit" /></template>
|
|
</EditFormPage>
|
|
</template>
|