feat: CSAT response collection public page (#2685)

This commit is contained in:
Muhsin Keloth 2021-08-03 18:22:50 +05:30 committed by GitHub
parent 9b01b82cc7
commit 92c14fa87d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
18 changed files with 371 additions and 10 deletions

View file

@ -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() {