fix: apply ESLint rule vue/no-required-prop-with-default
This commit is contained in:
@@ -8,7 +8,6 @@ const props = defineProps({
|
||||
label: {
|
||||
type: String,
|
||||
required: true,
|
||||
default: '',
|
||||
},
|
||||
});
|
||||
|
||||
|
||||
@@ -26,7 +26,6 @@ export default {
|
||||
},
|
||||
websiteName: {
|
||||
type: String,
|
||||
default: '',
|
||||
required: true,
|
||||
},
|
||||
logo: {
|
||||
|
||||
@@ -20,7 +20,6 @@ export default {
|
||||
},
|
||||
title: {
|
||||
type: String,
|
||||
default: '',
|
||||
required: true,
|
||||
},
|
||||
author: {
|
||||
|
||||
@@ -10,7 +10,6 @@ export default {
|
||||
props: {
|
||||
dayName: {
|
||||
type: String,
|
||||
default: '',
|
||||
required: true,
|
||||
},
|
||||
timeSlot: {
|
||||
|
||||
Reference in New Issue
Block a user