refactor: lint
This commit is contained in:
@@ -33,7 +33,7 @@
|
||||
export default {
|
||||
props: {
|
||||
show: Boolean,
|
||||
title: { type: String, default: "" },
|
||||
title: { type: String, default: null },
|
||||
yes: {
|
||||
type: String,
|
||||
default() {
|
||||
|
||||
@@ -7,9 +7,9 @@
|
||||
<script>
|
||||
export default {
|
||||
props: {
|
||||
label: { type: String, default: "" },
|
||||
icon: { type: String, default: "" },
|
||||
id: { type: String, default: "", required: true },
|
||||
label: { type: String, default: null },
|
||||
icon: { type: String, default: null },
|
||||
id: { type: String, default: null, required: true },
|
||||
selected: {
|
||||
type: Boolean,
|
||||
default: false,
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<script>
|
||||
export default {
|
||||
props: {
|
||||
value: { type: String, default: "" },
|
||||
value: { type: String, default: null },
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
|
||||
Reference in New Issue
Block a user