69 lines
1.8 KiB
Vue
69 lines
1.8 KiB
Vue
<script setup lang="ts">
|
|
import Block from '~/components/pub/my-ui/form/block.vue'
|
|
import FieldGroup from '~/components/pub/my-ui/form/field-group.vue'
|
|
import Field from '~/components/pub/my-ui/form/field.vue'
|
|
import Label from '~/components/pub/my-ui/form/label.vue'
|
|
|
|
const props = defineProps<{ modelValue: any }>()
|
|
const emit = defineEmits(['update:modelValue', 'event'])
|
|
|
|
const data = computed({
|
|
get: () => props.modelValue,
|
|
set: (val) => emit('update:modelValue', val),
|
|
})
|
|
|
|
const items = [
|
|
{ value: '1', label: 'item 1' },
|
|
{ value: '2', label: 'item 2' },
|
|
{ value: '3', label: 'item 3' },
|
|
{ value: '4', label: 'item 4' },
|
|
]
|
|
</script>
|
|
|
|
<template>
|
|
<form id="entry-form">
|
|
<div class="mb-5 border-b border-b-slate-300 pb-3 text-lg xl:text-xl">
|
|
<div class="flex flex-col justify-between">
|
|
<Block>
|
|
<FieldGroup>
|
|
<Label>Nama</Label>
|
|
<Field>
|
|
<Input v-model="data.name" />
|
|
</Field>
|
|
</FieldGroup>
|
|
<FieldGroup>
|
|
<Label>Kode</Label>
|
|
<Field>
|
|
<Input v-model="data.code" />
|
|
</Field>
|
|
</FieldGroup>
|
|
<FieldGroup>
|
|
<Label>Item Group</Label>
|
|
<Field>
|
|
<Select :items="items" />
|
|
</Field>
|
|
</FieldGroup>
|
|
<FieldGroup>
|
|
<Label>UOM</Label>
|
|
<Field>
|
|
<Select :items="items" />
|
|
</Field>
|
|
</FieldGroup>
|
|
<FieldGroup>
|
|
<Label>Infra</Label>
|
|
<Field>
|
|
<Select :items="items" />
|
|
</Field>
|
|
</FieldGroup>
|
|
<FieldGroup>
|
|
<Label>Harga</Label>
|
|
<Field>
|
|
<Input v-model="data.price" />
|
|
</Field>
|
|
</FieldGroup>
|
|
</Block>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</template>
|