Combine integrations & notifications sections (#229)

* Combine integrations & notifications sections

* New section Form Access
This commit is contained in:
formsdev
2023-10-26 16:52:16 +05:30
committed by GitHub
parent 8e5acab8bf
commit 8a2e071c56
10 changed files with 197 additions and 111 deletions

View File

@@ -1,5 +1,8 @@
<template>
<button v-if="!to" :type="nativeType" :disabled="loading" :class="btnClasses"
<a v-if="href" :class="btnClasses" :href="href" :target="target">
<slot />
</a>
<button v-else-if="!to" :type="nativeType" :disabled="loading" :class="btnClasses"
@click="onClick($event)"
>
<template v-if="!loading">
@@ -61,6 +64,11 @@ export default {
default: null
},
href: {
type: String,
default: null
},
target: {
type: String,
default: '_self'