feat: CSAT response collection public page (#2685)
This commit is contained in:
parent
9b01b82cc7
commit
92c14fa87d
18 changed files with 371 additions and 10 deletions
|
@ -1,5 +1,10 @@
|
|||
<template>
|
||||
<button :class="buttonClassName" :style="buttonStyles" @click="onClick">
|
||||
<button
|
||||
:class="buttonClassName"
|
||||
:style="buttonStyles"
|
||||
:disabled="disabled"
|
||||
@click="onClick"
|
||||
>
|
||||
<slot></slot>
|
||||
</button>
|
||||
</template>
|
||||
|
@ -22,6 +27,10 @@ export default {
|
|||
type: String,
|
||||
default: '',
|
||||
},
|
||||
disabled: {
|
||||
type: Boolean,
|
||||
default: false,
|
||||
},
|
||||
},
|
||||
computed: {
|
||||
buttonClassName() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue