New UI For Settings Page (#22)

* New UI For Settings Page

* WIP UI improvements

Co-authored-by: Julien Nahum <jhumanj@MacBook-Pro-de-Julien.local>
This commit is contained in:
Chirag
2022-11-08 22:14:04 +05:30
committed by GitHub
parent d694c4d8ce
commit 4873dfe696
8 changed files with 133 additions and 141 deletions

View File

@@ -1,6 +1,6 @@
<template>
<button v-if="!to" :type="nativeType" :disabled="loading" :class="btnClasses"
@click="$emit('click',$event)"
@click="onClick($event)"
>
<template v-if="!loading">
<span class="no-underline mx-auto">
@@ -158,6 +158,12 @@ export default {
'p-x': 'px-4'
}
}
},
methods: {
onClick(event) {
this.$emit('click',event)
}
}
}
</script>