Changed Plants to Objects

Changes in outgoinginvoices
This commit is contained in:
2024-01-27 11:54:14 +01:00
parent 6f6e835b0a
commit 3167b6a20a
21 changed files with 1821 additions and 23 deletions

View File

@@ -12,6 +12,11 @@ const router = useRouter()
const toast = useToast()
const id = ref(route.params.id ? route.params.id : null )
const editor = useEditor({
content: "<p>I'm running Tiptap with Vue.js. 🎉</p>",
extensions: [TiptapStarterKit],
});
let currentItem = null
//Working
@@ -25,6 +30,8 @@ const tabItems = [
label: "Projekte"
},{
label: "Aufgaben"
},{
label: "Dokumentation"
}
]
@@ -93,6 +100,11 @@ setupPage()
</UTable>
</div>
<div v-if="item.label === 'Dokumentation'">
<Editor/>
</div>
</template>
</UTabs>