21 lines
407 B
Vue
21 lines
407 B
Vue
<script setup lang="ts">
|
|
|
|
const isLoading = ref(false)
|
|
|
|
function onBack() {
|
|
navigateTo('/bpjs/sep')
|
|
}
|
|
|
|
async function onSubmit(data: any) {
|
|
console.log(data)
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div class="mb-5 border-b border-b-slate-300 pb-3 text-lg xl:text-xl">
|
|
<Icon name="i-lucide-panel-bottom" class="me-2" />
|
|
<span class="font-semibold">Tambah</span> SEP
|
|
</div>
|
|
<AppSepEntryForm />
|
|
</template>
|