Skip to content

Commit 0f75a0b

Browse files
committed
feat(FormEditor): First version
1 parent 1cc6bfd commit 0f75a0b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

dev/components/app/AppTopbar.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,8 @@ const items = ref([
118118
<template #center>
119119
<div class="text-lg">
120120
<span class="text-yellow-600 font-bold">New: </span>
121-
<router-link to="/samples/inputEditor" class="">
122-
<span class="">Prime Input Editor</span>
121+
<router-link to="/samples/formEditor" class="">
122+
<span class="">Form Editor</span>
123123
</router-link>
124124
</div>
125125
</template>

dev/pages/samples/FormEditor.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ const schemaItems = computed(() => editorDataToSchema(formInputList.value))
5757
<div cl>
5858
<Toolbar class="mt-6 mb-4">
5959
<template #start>
60-
<Button icon="pi pi-plus" class="mr-2" severity="secondary" text />
61-
<Button icon="pi pi-print" class="mr-2" severity="secondary" text />
62-
<Button icon="pi pi-upload" severity="secondary" text />
60+
<Button v-if="false" icon="pi pi-plus" class="mr-2" severity="secondary" text />
61+
<Button v-if="false" icon="pi pi-print" class="mr-2" severity="secondary" text />
62+
<Button v-if="false" icon="pi pi-upload" severity="secondary" text />
6363
</template>
6464

6565
<template #center>

0 commit comments

Comments
 (0)